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

23 lines
307 B
C
Raw Normal View History

#ifndef TEMPEST_RECT_H
#define TEMPEST_RECT_H
#include "system/types.h"
DECLARE_STRUCT(CRect);
DECLARE_STRUCT(CiRect);
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;
};
2024-07-07 03:00:06 -04:00
#endif