aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/api/GameObject.cpp
blob: 445a60df1c8b60aa3a09129594794edf570a6acb (plain)
1
2
3
4
5
6
7
#include "GameObject.h"

using namespace crepe;
using namespace std;

GameObject::GameObject(uint32_t id, string name, string tag, int layer)
	: id(id), name(name), tag(tag), active(true), layer(layer) {}