online multiplayer chess game (note server currently down)
Diffstat (limited to 'Game.gd')
| -rw-r--r-- | Game.gd | 11 |
1 files changed, 11 insertions, 0 deletions
@@ -0,0 +1,11 @@ +extends Control + +onready var status: StatusLabel = $Holder/SidebarRight/VBox/Status + + +func set_status(text: String, length := 5) -> void: + status.set_text(text, length) + + +func get_board() -> Node: + return $Holder/middle/Board |