summaryrefslogtreecommitdiff
path: root/assetFactory/use.h
diff options
context:
space:
mode:
Diffstat (limited to 'assetFactory/use.h')
-rw-r--r--assetFactory/use.h27
1 files changed, 27 insertions, 0 deletions
diff --git a/assetFactory/use.h b/assetFactory/use.h
new file mode 100644
index 0000000..5e4c35f
--- /dev/null
+++ b/assetFactory/use.h
@@ -0,0 +1,27 @@
+#pragma once
+
+#include "faceController.h"
+#include "modelFactoryMesh_fwd.h"
+#include "persistence.h"
+#include "shape.h"
+#include "stdTypeDefs.hpp"
+#include "style.h"
+
+class Use : public StdTypeDefs<Use>, public Mutation, public Style, public Persistence::Persistable {
+public:
+ using FaceControllers = std::map<std::string, std::unique_ptr<FaceController>>;
+
+ Shape::CreatedFaces createMesh(ModelFactoryMesh & mesh, const Mutation::Matrix & mutation) const;
+
+ Shape::CPtr type;
+ FaceControllers faceControllers;
+
+private:
+ friend Persistence::SelectionPtrBase<std::shared_ptr<Use>>;
+ bool persist(Persistence::PersistenceStore & store) override;
+ std::string
+ getId() const override
+ {
+ return {};
+ };
+};