Mirai's Miscellaneous Misadventures

M42 / include / mimimi / geometry.h

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

#ifndef MIMIMI_GEOMETRY_H
#define MIMIMI_GEOMETRY_H

struct mimimi_position
{
	int x;
	int y;
};

struct mimimi_size
{
	int width;
	int height;
};

#endif