aboutsummaryrefslogtreecommitdiff
path: root/mwe/events/include/gameObject.h
diff options
context:
space:
mode:
Diffstat (limited to 'mwe/events/include/gameObject.h')
-rw-r--r--mwe/events/include/gameObject.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/mwe/events/include/gameObject.h b/mwe/events/include/gameObject.h
index 70d4517..de5f3fe 100644
--- a/mwe/events/include/gameObject.h
+++ b/mwe/events/include/gameObject.h
@@ -3,14 +3,14 @@
#include <string>
class GameObject {
public:
- GameObject(std::uint32_t id, std::string name, std::string tag, int layer);
+ GameObject(){}
- template <typename... Args>
- void addSpriteComponent(Args &&... args);
- template <typename... Args>
- void addRigidbodyComponent(Args &&... args);
- template <typename... Args>
- void addColiderComponent(Args &&... args);
+ // template <typename... Args>
+ // void addSpriteComponent(Args &&... args);
+ // template <typename... Args>
+ // void addRigidbodyComponent(Args &&... args);
+ // template <typename... Args>
+ // void addColiderComponent(Args &&... args);
std::uint32_t mId;
std::string mName;