Files
cup_edit/thermion_dart/native/include/Aabb2.h

18 lines
193 B
C

#pragma once
#ifdef __cplusplus
extern "C"
{
#endif
struct Aabb2 {
float minX;
float minY;
float maxX;
float maxY;
};
typedef struct Aabb2 Aabb2;
#ifdef __cplusplus
}
#endif