input and handler possibly fixed and point

This commit is contained in:
herbglitch 2022-11-11 01:15:54 -07:00
parent d6281e8eac
commit 3fa74e8f9e
7 changed files with 288 additions and 0 deletions

14
include/arc/math/point.h Normal file
View file

@ -0,0 +1,14 @@
#ifndef ARC_MATH_POINT_H_
#define ARC_MATH_POINT_H_
#include <stdint.h>
typedef struct ARC_Point {
int32_t x, y;
} ARC_Point;
typedef struct ARC_UPoint {
uint32_t x, y;
} ARC_UPoint;
#endif // ARC_MATH_POINT_H_