diff options
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(); } |