summaryrefslogtreecommitdiff
path: root/assetFactory/plane.h
diff options
context:
space:
mode:
Diffstat (limited to 'assetFactory/plane.h')
-rw-r--r--assetFactory/plane.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/assetFactory/plane.h b/assetFactory/plane.h
new file mode 100644
index 0000000..5e93ee4
--- /dev/null
+++ b/assetFactory/plane.h
@@ -0,0 +1,8 @@
+#pragma once
+
+#include "shape.h"
+
+class Plane : public Shape {
+public:
+ CreatedFaces createMesh(ModelFactoryMesh & mesh, const Mutation::Matrix & mutation) const override;
+};