aboutsummaryrefslogtreecommitdiff
path: root/src/libjin/game/gameobject.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/libjin/game/gameobject.h')
-rw-r--r--src/libjin/game/gameobject.h32
1 files changed, 16 insertions, 16 deletions
diff --git a/src/libjin/game/gameobject.h b/src/libjin/game/gameobject.h
index 7cb0de2..f81ae75 100644
--- a/src/libjin/game/gameobject.h
+++ b/src/libjin/game/gameobject.h
@@ -13,27 +13,27 @@
namespace JinEngine
{
- namespace Game
- {
+ namespace Game
+ {
- ///
- /// Game object base class.
- ///
- class GameObject : public Object
- {
- public:
+ ///
+ /// Game object base class.
+ ///
+ class GameObject : public Object
+ {
+ public:
- ///
- ///
- ///
- virtual ~GameObject() {};
+ ///
+ ///
+ ///
+ virtual ~GameObject() {};
- protected:
- Math::Transform mTransform;
+ protected:
+ Math::Transform mTransform;
- };
+ };
- } // namespace Game
+ } // namespace Game
} // namespace JinEngine
#endif // jin_game