aboutsummaryrefslogtreecommitdiff
path: root/engines/cruise/polys.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/cruise/polys.h')
-rw-r--r--engines/cruise/polys.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/engines/cruise/polys.h b/engines/cruise/polys.h
index 902085fd45..9c3d17bfa8 100644
--- a/engines/cruise/polys.h
+++ b/engines/cruise/polys.h
@@ -22,11 +22,16 @@
*
*/
+#ifndef CRUISE_POLYS_H
+#define CRUISE_POLYS_H
+
namespace Cruise {
typedef char ColorP;
-void fillpoly(short int * datas, int n, ColorP c);
+void fillpoly(short int *datas, int n, ColorP c);
void line(int x1, int y1, int x2, int y2, ColorP color);
} // End of namespace Cruise
+
+#endif