diff options
Diffstat (limited to 'src/libjin/Game/je_gameobject.h')
-rw-r--r-- | src/libjin/Game/je_gameobject.h | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/src/libjin/Game/je_gameobject.h b/src/libjin/Game/je_gameobject.h index fefc6df..7c6ec2b 100644 --- a/src/libjin/Game/je_gameobject.h +++ b/src/libjin/Game/je_gameobject.h @@ -16,7 +16,7 @@ namespace JinEngine { namespace Game { - + /* /// /// Game object base class. /// @@ -61,10 +61,7 @@ namespace JinEngine bool mIsVisible; // if the entity is visible or not bool mIsActive; // if the entity is joined into the logic - /// - /// Position of entity. - /// - Math::Vector2<float> mPosition; + Math::Transform mTransform; }; @@ -77,7 +74,7 @@ namespace JinEngine /// Entity set. For searching and keeps entities unique and sorted. /// typedef std::set<GameObject*> EntitySet; - + */ } // namespace Game } // namespace JinEngine |