blob: 753c8e2006163908e35f1b676138e2fb622ee676 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#include "GameObjectMax.h"
#include "ComponentManager.h"
GameObject::GameObject(std::uint32_t id, std::string name, std::string tag,
int layer)
: mId(id),
mName(name),
mTag(tag),
mActive(true),
mLayer(layer) {}
|