blob: de3beb66cfa87ba8d6bf8608a3892bebd63951e6 (
plain)
1
2
3
4
5
6
7
|
#include "GameObject.h"
using namespace crepe;
GameObject::GameObject(uint32_t id, std::string name, std::string tag,
int layer)
: id(id), name(name), tag(tag), active(true), layer(layer) {}
|