feat: collision functions added

This commit is contained in:
2025-10-04 14:57:09 +01:00
parent 14321c71b8
commit a9f12532b4
4 changed files with 45 additions and 0 deletions

View File

@@ -29,4 +29,16 @@ struct Str8 {
U8 *data;
};
typedef struct V2f V2f;
struct V2f {
F32 x;
F32 y;
};
typedef struct V2i V2i;
struct V2i {
U32 x;
U32 y;
};
#endif // LD_CORE_TYPES_H_