still working on adding frames to config
This commit is contained in:
parent
3fa74e8f9e
commit
0591b6ca6e
10 changed files with 199 additions and 53 deletions
|
|
@ -0,0 +1,20 @@
|
|||
#ifndef ARC_MATH_RECT_H_
|
||||
#define ARC_MATH_RECT_H_
|
||||
|
||||
#include <stdint.h>
|
||||
|
||||
typedef struct ARC_Rect {
|
||||
int32_t x;
|
||||
int32_t y;
|
||||
int32_t w;
|
||||
int32_t h;
|
||||
} ARC_Rect;
|
||||
|
||||
typedef struct ARC_URect {
|
||||
uint32_t x;
|
||||
uint32_t y;
|
||||
uint32_t w;
|
||||
uint32_t h;
|
||||
} ARC_URect;
|
||||
|
||||
#endif // ARC_MATH_POINT_H_
|
||||
Loading…
Add table
Add a link
Reference in a new issue