diff options
Diffstat (limited to 'source/EditorAttachmentImpl.hpp')
-rw-r--r-- | source/EditorAttachmentImpl.hpp | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/source/EditorAttachmentImpl.hpp b/source/EditorAttachmentImpl.hpp index e9dbe6f..53bcd37 100644 --- a/source/EditorAttachmentImpl.hpp +++ b/source/EditorAttachmentImpl.hpp @@ -10,16 +10,20 @@ class EaGameObject : public EditorAttachment { public: + // NOTE: in degrees + glm::vec3 eulerAnglesRotation; + +public: static std::unique_ptr<EditorAttachment> Create(GameObject* object); }; -class EaPlayer : public EditorAttachment { +class EaPlayer : public EaGameObject { public: RcPtr<IresSpritesheet> confSprite; RcPtr<IresMaterial> confMaterial; }; -class EaLevelWrapper : public EditorAttachment { +class EaLevelWrapper : public EaGameObject { public: }; |