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