Mirai's Miscellaneous Misadventures

M21 / include / mimimi / geometry.h

// copyright 2022 zamfofex
// license: AGPLv3 or later

#ifndef MIMIMI_GEOMETRY_H
#define MIMIMI_GEOMETRY_H

struct mimimi_position
{
	int x;
	int y;
};

struct mimimi_size
{
	int width;
	int height;
};

#endif