binana/profile/3.3.5a-windows-386/include/storm/region/rect.h

16 lines
222 B
C
Raw Permalink Normal View History

2024-09-20 00:13:32 -04:00
#ifndef STORM_REGION_RECT_H
#define STORM_REGION_RECT_H
#include "storm/array.h"
DECLARE_STRUCT(RECTF);
struct RECTF {
float left;
float bottom;
float right;
float top;
};
STORM_TS_GROWABLE_ARRAY(RECTF);
#endif