Cleanup region.h

See #42
This commit is contained in:
Alexander Batalov 2022-06-19 08:30:28 +03:00
parent a2da6fa26c
commit 6df489fecc
2 changed files with 2 additions and 3 deletions

View File

@ -6,7 +6,8 @@
#include <limits.h> #include <limits.h>
#include <string.h> #include <string.h>
char _aNull[] = "<null>"; // 0x50D394
static char _aNull[] = "<null>";
// Probably recalculates bounding box of the region. // Probably recalculates bounding box of the region.
// //

View File

@ -37,8 +37,6 @@ typedef struct Region {
void* userData; void* userData;
} Region; } Region;
extern char _aNull[];
void _regionSetBound(Region* region); void _regionSetBound(Region* region);
Region* regionCreate(int a1); Region* regionCreate(int a1);
void regionAddPoint(Region* region, int x, int y); void regionAddPoint(Region* region, int x, int y);