diff options
author | hnOsmium0001 <[email protected]> | 2022-04-25 20:22:07 -0700 |
---|---|---|
committer | hnOsmium0001 <[email protected]> | 2022-04-25 20:22:07 -0700 |
commit | f54370de7e4214cb7813d26b1a39a8f6e42b7b56 (patch) | |
tree | 20913b4099b77af933fcd2ebb4e73f53b366ad8f /source/Ires.hpp | |
parent | c8ebee643f23c34ff57f69f8dfcf1903b59ea9d1 (diff) |
Initial work on rendering sprites to screen
Diffstat (limited to 'source/Ires.hpp')
-rw-r--r-- | source/Ires.hpp | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/source/Ires.hpp b/source/Ires.hpp index 5875264..a4867da 100644 --- a/source/Ires.hpp +++ b/source/Ires.hpp @@ -52,12 +52,14 @@ public: void SetName(std::string name); const Uid& GetUid() const { return mUid; } - static void ShowNullName(EditorInstance& editor, Kind kind); + static void ShowNameSafe(IresObject* ires); + static void ShowNameNull(); void ShowName() const; - void ShowFullName() const; - static void ShowNullReference(EditorInstance& editor, Kind kind); - virtual void ShowReference(EditorInstance& editor); + static void ShowReferenceSafe(EditorInstance& editor, IresObject* ires); + static void ShowReferenceNull(EditorInstance& editor); + void ShowReference(EditorInstance& editor); + virtual void ShowEditor(EditorInstance& editor); EditorAttachment* GetEditorAttachment() const { return mEditorAttachment.get(); } |