aboutsummaryrefslogtreecommitdiff
path: root/mwe/ecs-memory-efficient/src/GameObjectMax.cpp
blob: 62c41de5cf43b55f6538d3b292638fe781a28ba7 (plain)
1
2
3
4
5
#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) {}