diff options
Diffstat (limited to 'addons/hexgrid')
-rw-r--r-- | addons/hexgrid/HexMap.gd | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/addons/hexgrid/HexMap.gd b/addons/hexgrid/HexMap.gd index 3da1631..f2a62c7 100644 --- a/addons/hexgrid/HexMap.gd +++ b/addons/hexgrid/HexMap.gd @@ -1,7 +1,7 @@ #warning-ignore-all:integer_division extends Node -class_name HexBoard, "res://addons/hexgrid/HexMap.png" +class_name HexMap, "res://addons/hexgrid/HexMap.png" enum Orientation { E=1, NE=2, N=4, NW=8, W=16, SW=32, S=64, SE=128 } |