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