mirror of
https://github.com/thunderbrewhq/binana.git
synced 2025-12-12 09:52:28 +00:00
chore(binana): add files
This commit is contained in:
commit
aa605d1aef
14 changed files with 305 additions and 0 deletions
20
3.3.5a/include/tempest/rect.h
Normal file
20
3.3.5a/include/tempest/rect.h
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
#ifndef TEMPEST_RECT_H
|
||||
#define TEMPEST_RECT_H
|
||||
|
||||
#include <stdint.h>
|
||||
|
||||
struct CRect {
|
||||
float minY; // t
|
||||
float minX; // l
|
||||
float maxY; // b
|
||||
float maxX; // r
|
||||
};
|
||||
|
||||
struct CiRect {
|
||||
int32_t minY;
|
||||
int32_t minX;
|
||||
int32_t maxY;
|
||||
int32_t maxX;
|
||||
};
|
||||
|
||||
#endif
|
||||
Loading…
Add table
Add a link
Reference in a new issue