blob: 5ac9d7a0d853da1f2d2ba43a649afad201c9eb62 (
plain)
1
2
3
4
5
6
7
8
9
|
#include "GameObject.h"
#include "ComponentManager.h"
using namespace crepe;
GameObject::GameObject(std::uint32_t id, std::string name, std::string tag,
int layer)
: mId(id), mName(name), mTag(tag), mActive(true), mLayer(layer) {}
|