diff options
Diffstat (limited to 'include/core/component.h')
| -rw-r--r-- | include/core/component.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/include/core/component.h b/include/core/component.h new file mode 100644 index 0000000..639330b --- /dev/null +++ b/include/core/component.h @@ -0,0 +1,15 @@ +#ifndef RUIM_CORE_COMPONENT +#define RUIM_CORE_COMPONENT + +#include "internal/utils.h" + +struct ruim_component { + u64 id, type; + void *data; +}; + +struct ruim_componentTree { + u64 root; +}; + +#endif |