summaryrefslogtreecommitdiff
path: root/src/position.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/position.h')
-rw-r--r--src/position.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/position.h b/src/position.h
index 60c762310..717aba8d3 100644
--- a/src/position.h
+++ b/src/position.h
@@ -26,10 +26,12 @@
#include <iostream>
#include <list>
+#include "localconsts.h"
+
/**
* A position along a being's path.
*/
-struct Position
+struct Position final
{
Position(const int x0, const int y0) :
x(x0), y(y0)