blob: 0516f685c6ef638de4fc7b7a89031b1cf0571fd3 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#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) {}
|