More demo

This commit is contained in:
robojumper
2025-04-05 00:11:00 +02:00
parent af4a1cfdb0
commit f2bcb0da52
10 changed files with 380 additions and 111 deletions
+14
View File
@@ -0,0 +1,14 @@
#ifndef D_LYT_VEC2F_H
#define D_LYT_VEC2F_H
#include "common.h"
// This better not be mVec2_c or something stupid
struct LytVec2f {
LytVec2f() {}
~LytVec2f() {}
f32 x;
f32 y;
};
#endif