refactor: native types

This commit is contained in:
Nick Fisher
2024-09-19 09:09:42 +08:00
parent 9a23a24bd3
commit ff7fee2d94

View File

@@ -1,18 +0,0 @@
#pragma once
#ifdef __cplusplus
extern "C"
{
#endif
struct Aabb2 {
float minX;
float minY;
float maxX;
float maxY;
};
typedef struct Aabb2 Aabb2;
#ifdef __cplusplus
}
#endif