chore(binana): add files

This commit is contained in:
phaneron 2024-07-07 03:00:06 -04:00
commit aa605d1aef
14 changed files with 305 additions and 0 deletions

View file

@ -0,0 +1,19 @@
#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