diff options
author | hnOsmium0001 <[email protected]> | 2022-04-18 20:59:57 -0700 |
---|---|---|
committer | hnOsmium0001 <[email protected]> | 2022-04-18 20:59:57 -0700 |
commit | 2a5234a512c19582d261a7ccb692fc634dcb74f0 (patch) | |
tree | 0f52925373115319a9ad7d03600e566c59a86566 /source/Ires.hpp | |
parent | f77e73c01a15426bcc6e3d7fe5826d2a741fed38 (diff) |
Migrate Material to Ires
Diffstat (limited to 'source/Ires.hpp')
-rw-r--r-- | source/Ires.hpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/source/Ires.hpp b/source/Ires.hpp index f821d87..b6e351c 100644 --- a/source/Ires.hpp +++ b/source/Ires.hpp @@ -21,6 +21,7 @@ class IresObject : public RefCounted { public: enum Kind { KD_Texture, + KD_Material, KD_SpriteFiles, KD_Spritesheet, KD_COUNT, @@ -48,6 +49,9 @@ public: void SetName(std::string name); const Uid& GetUid() const { return mUid; } + void ShowName() const; + void ShowFullName() const; + virtual void ShowReference(EditorInstance& editor); virtual void ShowEditor(EditorInstance& editor); EditorAttachment* GetEditorAttachment() const { return mEditorAttachment.get(); } |