feat: engine as library

This commit is contained in:
2025-10-16 19:43:51 +02:00
parent 165073c36d
commit aa7aafe944
42 changed files with 160 additions and 147 deletions

View File

@ -0,0 +1,12 @@
#ifndef COMPONENTS_TRANSFORM_H_
#define COMPONENTS_TRANSFORM_H_
#include <glm/glm.hpp>
struct transform {
glm::vec3 position;
glm::vec3 rotation;
glm::vec3 scale;
};
#endif // COMPONENTS_TRANSFORM_H_