advent-of-dreamcast/cartesian.h
2024-12-08 01:16:05 -06:00

13 lines
165 B
C

#pragma once
#ifdef __cplusplus
extern "C" {
#endif
bool cartesian_inside(int width, int height,
int x, int y);
#ifdef __cplusplus
}
#endif