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

namespace crepe {

class Component {
protected:
	Component(uint32_t id);

public:
	uint32_t gameObjectId;
	bool active;
	virtual ~Component() = default;
};

} // namespace crepe