9 lines
79 B
C
9 lines
79 B
C
#pragma once
|
|
|
|
#include <stdint.h>
|
|
|
|
struct Point {
|
|
int16_t x;
|
|
int16_t y;
|
|
};
|