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

19 lines
No EOL
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