mirror of
https://github.com/thunderbrewhq/binana.git
synced 2025-12-12 17:52:29 +00:00
16 lines
No EOL
222 B
C
16 lines
No EOL
222 B
C
#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 |