TinyAdventure/ui/game_profile_item.gd

14 lines
291 B
GDScript
Raw Normal View History

class_name GameProfileItem
extends HBoxContainer
@onready var name_label: Label = %NameLabel
@onready var start_button: Button = %StartButton
var game_profile:GameProfileResource = null
func _ready() -> void:
if game_profile == null:
return
name_label.text = game_profile.game_name