binana/3.3.5a/include/tempest/rect.h

23 lines
334 B
C
Raw Normal View History

2024-07-07 03:00:06 -04:00
#ifndef TEMPEST_RECT_H
#define TEMPEST_RECT_H
#include <stdint.h>
typedef struct CRect CRect;
typedef struct CiRect CiRect;
2024-07-07 03:00:06 -04:00
struct CRect {
float minY; // t
float minX; // l
float maxY; // b
float maxX; // r
};
struct CiRect {
int32_t minY;
int32_t minX;
int32_t maxY;
int32_t maxX;
};
#endif