You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

23 lines
312 B

#pragma once
#include <cstdint>
#include <string>
#include <vector>
#include "vulkan/vertex.hpp"
#include <glm/vec3.hpp>
using std::vector;
struct Face {
uint32_t a;
uint32_t b;
uint32_t c;
};
class SoftBody {
public:
explicit SoftBody(const std::string& fileName);
private:
uint32_t indexCount = 0;
};