diff options
Diffstat (limited to 'assetFactory/cylinder.h')
-rw-r--r-- | assetFactory/cylinder.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/assetFactory/cylinder.h b/assetFactory/cylinder.h new file mode 100644 index 0000000..65ca5e5 --- /dev/null +++ b/assetFactory/cylinder.h @@ -0,0 +1,8 @@ +#pragma once + +#include "shape.h" + +class Cylinder : public Shape { +public: + CreatedFaces createMesh(ModelFactoryMesh & mesh, const Mutation::Matrix & mutation) const override; +}; |