diff options
author | Jérémy Zurcher <jeremy@asynk.ch> | 2020-07-10 14:01:43 +0200 |
---|---|---|
committer | Jérémy Zurcher <jeremy@asynk.ch> | 2020-07-10 14:01:43 +0200 |
commit | ed517bbfd0e10abd9bc571131188061a7221d103 (patch) | |
tree | 1c2d4e6b68f785d1f9be8af3ac30c18ea8f234ad /project.godot | |
parent | 560b2702f1dfe2836c7127dbae7f7d3b515510c6 (diff) | |
download | godot-hexgrid-ed517bbfd0e10abd9bc571131188061a7221d103.zip godot-hexgrid-ed517bbfd0e10abd9bc571131188061a7221d103.tar.gz |
implement possible_moves()
Diffstat (limited to 'project.godot')
-rw-r--r-- | project.godot | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/project.godot b/project.godot index f00effb..03a9823 100644 --- a/project.godot +++ b/project.godot @@ -20,14 +20,26 @@ _global_script_classes=[ { "path": "res://HexBoard.gd" }, { "base": "Node2D", +"class": "Piece", +"language": "GDScript", +"path": "res://Piece.gd" +}, { +"base": "Node2D", "class": "Tile", "language": "GDScript", "path": "res://Tile.gd" +}, { +"base": "Piece", +"class": "Unit", +"language": "GDScript", +"path": "res://Unit.gd" } ] _global_script_class_icons={ "Hex": "res://godot/Tile.png", "HexBoard": "res://godot/HexBoard.png", -"Tile": "res://godot/Tile.png" +"Piece": "res://godot/Piece.png", +"Tile": "res://godot/Tile.png", +"Unit": "res://godot/Piece.png" } [application] |