aboutsummaryrefslogtreecommitdiff
path: root/source/EditorAttachment.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'source/EditorAttachment.hpp')
-rw-r--r--source/EditorAttachment.hpp12
1 files changed, 12 insertions, 0 deletions
diff --git a/source/EditorAttachment.hpp b/source/EditorAttachment.hpp
new file mode 100644
index 0000000..61b824b
--- /dev/null
+++ b/source/EditorAttachment.hpp
@@ -0,0 +1,12 @@
+#pragma once
+
+#include <string>
+
+class EditorAttachment {
+public:
+ std::string name;
+
+public:
+ EditorAttachment();
+ virtual ~EditorAttachment() = default;
+};