mirror of
https://github.com/thunderbrewhq/binana.git
synced 2025-12-12 09:52:28 +00:00
19 lines
221 B
C
19 lines
221 B
C
|
|
#ifndef TEMPEST_RANGE_H
|
||
|
|
#define TEMPEST_RANGE_H
|
||
|
|
|
||
|
|
#include "system/types.h"
|
||
|
|
|
||
|
|
DECLARE_STRUCT(CRange);
|
||
|
|
DECLARE_STRUCT(CiRange);
|
||
|
|
|
||
|
|
struct CRange {
|
||
|
|
float l;
|
||
|
|
float h;
|
||
|
|
};
|
||
|
|
|
||
|
|
struct CiRange {
|
||
|
|
int32_t l;
|
||
|
|
int32_t h;
|
||
|
|
};
|
||
|
|
|
||
|
|
#endif
|