mirror of
https://codeberg.org/mclemens/ubitxv6.git
synced 2024-11-04 16:27:35 -05:00
9 lines
79 B
C
9 lines
79 B
C
|
#pragma once
|
||
|
|
||
|
#include <stdint.h>
|
||
|
|
||
|
struct Point {
|
||
|
int16_t x;
|
||
|
int16_t y;
|
||
|
};
|