aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/Component.h
blob: a23de611d75e272a188080e52071f00fb4588477 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#pragma once
#include <cstdint>

namespace crepe {

class Component {
public:
	Component(uint32_t id);
	virtual ~Component() {}
	// TODO: shouldn't this constructor be deleted because this class will never
	// directly be instantiated?
	//changed so it sets the id (jaro)
	uint32_t gameObjectId;
	bool active;
};

} // namespace crepe