isle-portable/mortar/include/mortar/mortar_rect.h
2026-01-31 03:48:00 +01:00

28 lines
351 B
C

#pragma once
#include "mortar_begin.h"
typedef struct MORTAR_Point {
int x;
int y;
} MORTAR_Point;
typedef struct MORTAR_FPoint {
float x;
float y;
} MORTAR_FPoint;
typedef struct MORTAR_Rect {
int x, y;
int w, h;
} MORTAR_Rect;
typedef struct MORTAR_FRect {
float x;
float y;
float w;
float h;
} MORTAR_FRect;
#include "mortar_end.h"