mirror of
https://github.com/thunderbrewhq/binana.git
synced 2025-12-12 09:52:28 +00:00
19 lines
246 B
C
19 lines
246 B
C
|
|
#ifndef TEMPEST_RANGE_H
|
||
|
|
#define TEMPEST_RANGE_H
|
||
|
|
|
||
|
|
#include <stdint.h>
|
||
|
|
|
||
|
|
typedef struct CRange CRange;
|
||
|
|
typedef struct CiRange CiRange;
|
||
|
|
|
||
|
|
struct CRange {
|
||
|
|
float l;
|
||
|
|
float h;
|
||
|
|
};
|
||
|
|
|
||
|
|
struct CiRange {
|
||
|
|
int32_t l;
|
||
|
|
int32_t h;
|
||
|
|
};
|
||
|
|
|
||
|
|
#endif
|