Mirai's Miscellaneous Misadventures

M36 / include / mimimi / geometry.h

1// copyright 2022 zamfofex
2// license: AGPLv3 or later
3
4#ifndef MIMIMI_GEOMETRY_H
5#define MIMIMI_GEOMETRY_H
6
7struct mimimi_position
8{
9	int x;
10	int y;
11};
12
13struct mimimi_size
14{
15	int width;
16	int height;
17};
18
19#endif