16 lines
189 B
GDScript3
16 lines
189 B
GDScript3
|
extends Node2D
|
||
|
|
||
|
func _ready():
|
||
|
$MarginContainer/Label.text = Global.client.lobby
|
||
|
pass
|
||
|
|
||
|
func _draw():
|
||
|
pass
|
||
|
|
||
|
func _process(_delta):
|
||
|
pass
|
||
|
|
||
|
|
||
|
func _on_Button_pressed():
|
||
|
Global.leave_game()
|