aboutsummaryrefslogtreecommitdiff
path: root/V3/Map/Constants.cs
diff options
context:
space:
mode:
Diffstat (limited to 'V3/Map/Constants.cs')
-rw-r--r--V3/Map/Constants.cs12
1 files changed, 12 insertions, 0 deletions
diff --git a/V3/Map/Constants.cs b/V3/Map/Constants.cs
new file mode 100644
index 0000000..2de2e25
--- /dev/null
+++ b/V3/Map/Constants.cs
@@ -0,0 +1,12 @@
+namespace V3.Map
+{
+ /// <summary>
+ /// Constants for describing the size of the cells of the collision grid.
+ /// Important for pathfinding.
+ /// </summary>
+ public static class Constants
+ {
+ public const int CellHeight = 16;
+ public const int CellWidth = 16;
+ }
+} \ No newline at end of file