aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/api/Component.h
blob: 2abb461674fc687324dbaf48b7cc785709d5cf51 (plain)
1
2
3
4
5
6
7
8
9
10
11
#pragma once

namespace crepe::api {

class Component {
public:
	bool active;
};

}