feat: basic ecs start + renderer class

This commit is contained in:
2025-10-07 21:36:23 +02:00
parent 6cef3efbbc
commit 4e86d92987
9 changed files with 218 additions and 77 deletions

9
include/ecs/component.h Normal file
View File

@ -0,0 +1,9 @@
#ifndef ECS_COMPONENT_H_
#define ECS_COMPONENT_H_
namespace ecs {
class Component {
};
}
#endif // ECS_COMPONENT_H_