aboutsummaryrefslogtreecommitdiff
path: root/source/Ires.hpp
diff options
context:
space:
mode:
authorrtk0c <[email protected]>2022-04-25 20:22:07 -0700
committerrtk0c <[email protected]>2022-04-25 20:22:07 -0700
commit855da86feae1a5cc14dc2d486ccf115f484dbc2e (patch)
tree8284c6a6bdfb1a919eb1a22f466f4180a329c7f3 /source/Ires.hpp
parentd78a55de5003dbb040f1d1c369409e63a2c806d8 (diff)
Changeset: 16 Initial work on rendering sprites to screen
Diffstat (limited to 'source/Ires.hpp')
-rw-r--r--source/Ires.hpp10
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(); }