aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/Component.cpp
blob: 25c6947733d07666834ea57f82be01133f7fe7ee (plain)
1
2
3
4
5
6
7
8
9
#include "Component.h"

using namespace crepe;

Component::Component(uint32_t id) : game_object_id(id), active(true) {}

int Component::get_instances_max() const {
	return -1;
}