mirror of
https://codeberg.org/mclemens/ubitxv6.git
synced 2024-11-04 20:07:21 -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;
|
|
};
|