1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-06 06:32:56 +01:00

Refactor rect.c to C++

This commit is contained in:
Ted John
2018-01-05 18:21:47 +00:00
parent ad406e5ae0
commit 90b63b09f8

View File

@@ -19,6 +19,9 @@
#include "../platform/platform.h"
#include "drawing.h"
extern "C"
{
/**
* Draw a rectangle, with optional border or fill
*
@@ -114,3 +117,5 @@ void gfx_fill_rect_inset(rct_drawpixelinfo* dpi, sint16 left, sint16 top, sint16
}
}
}
}