Added basic title screen functionality

This commit is contained in:
Paul Norberger
2020-04-18 14:21:22 +02:00
parent 88a8f255d3
commit 4d696c0cea
9 changed files with 104 additions and 23 deletions

View File

@@ -0,0 +1,11 @@
extends Control
class_name TitleScreen
onready var new_game_button = $"VBoxContainer/NewGameButton"
func _ready():
new_game_button.grab_focus()
func _on_Startup_startup_finished():
pass # Replace with function body.