INITIAL COMMIT

This commit is contained in:
2026-06-03 00:51:18 +01:00
commit 7f46c85194
76 changed files with 4845 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
// vim:fileencoding=utf-8:foldmethod=marker
#ifndef PROPS_H
#define PROPS_H
#include "entity_id.h"
#include "wapp/wapp.h"
typedef struct Vec2f {
f32 x;
f32 y;
} Vec2f;
typedef struct Transform2D {
Vec2f position;
Vec2f scale;
f32 rotation;
} Transform2D;
#endif // !PROPS_H