refactor: native types

This commit is contained in:
Nick Fisher
2024-09-19 09:09:42 +08:00
parent 462f1f02bf
commit c17919cd97

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