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

namespace crepe {

class Component {
protected:
	Component() = default;

public:
	virtual ~Component() = default;

public:
	bool active = true;
};

} // namespace crepe