first commit

This commit is contained in:
saarsena@gmail.com 2026-04-02 03:41:50 -04:00
commit 5c7d1905a9
25 changed files with 4034 additions and 0 deletions

11
include/components.hpp Normal file
View file

@ -0,0 +1,11 @@
/**
* @file components.hpp
* @brief Master include for all ECS components
*/
#pragma once
#include "components/transform.hpp"
#include "components/render.hpp"
#include "components/input.hpp"
#include "components/common.hpp"