diff options
author | hnOsmium0001 <[email protected]> | 2022-04-15 20:30:39 -0700 |
---|---|---|
committer | hnOsmium0001 <[email protected]> | 2022-04-15 20:30:39 -0700 |
commit | 509201784d6525fc26345e55a56ab81e4a7616b3 (patch) | |
tree | bcd68f247937324d06480b58a284b47e1c6bb2b8 /source/EditorAttachmentImpl.hpp | |
parent | 989f90ebe2c37e8a517691a35d7e0d827fbe7006 (diff) |
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; }; |