diff options
author | rtk0c <[email protected]> | 2022-04-18 20:59:57 -0700 |
---|---|---|
committer | rtk0c <[email protected]> | 2022-04-18 20:59:57 -0700 |
commit | 07e8754e4d799e44678b595177e79e6eaa621268 (patch) | |
tree | 6d9d4470259776ef01e814191ba0440f83505933 /source/Ires.hpp | |
parent | 7f871b04470766f0f5266cf949b65a54b7a6f79e (diff) |
Changeset: 11 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(); } |