diff options
author | rtk0c <[email protected]> | 2022-04-15 20:30:39 -0700 |
---|---|---|
committer | rtk0c <[email protected]> | 2022-04-15 20:30:39 -0700 |
commit | afcac59c7d04f4337d6b04ebed8cac7e871ccc50 (patch) | |
tree | 8c32b90b4a0ab762a68f228dc8cc4e7f52fc5bd7 /source/EditorAttachmentImpl.hpp | |
parent | f2a1481123ac23aeb4937df5f61c57e0e4f1ff52 (diff) |
Changeset: 7 Work on Material system
Diffstat (limited to 'source/EditorAttachmentImpl.hpp')
-rw-r--r-- | source/EditorAttachmentImpl.hpp | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/source/EditorAttachmentImpl.hpp b/source/EditorAttachmentImpl.hpp index 32618b1..cb96348 100644 --- a/source/EditorAttachmentImpl.hpp +++ b/source/EditorAttachmentImpl.hpp @@ -22,5 +22,10 @@ public: class EaShader : public EditorAttachment { public: Shader* shader; - std::string name; +}; + +class EaMaterial : public EditorAttachment { +public: + std::string editingScratch; + bool isEditingName = false; }; |