diff options
Diffstat (limited to 'src/crepe/api/Component.h')
-rw-r--r-- | src/crepe/api/Component.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/crepe/api/Component.h b/src/crepe/api/Component.h new file mode 100644 index 0000000..2abb461 --- /dev/null +++ b/src/crepe/api/Component.h @@ -0,0 +1,11 @@ +#pragma once + +namespace crepe::api { + +class Component { +public: + bool active; +}; + +} + |