17 lines
259 B
GDScript3
17 lines
259 B
GDScript3
|
extends Control
|
||
|
const CHARACTER_BAG_CARD = preload("res://scene/character_bag_card.tscn")
|
||
|
|
||
|
func _ready() -> void:
|
||
|
|
||
|
|
||
|
pass
|
||
|
|
||
|
func _on_back_btn_pressed() -> void:
|
||
|
get_parent().change_open(false)
|
||
|
pass # Replace with function body.
|
||
|
func refresh():
|
||
|
|
||
|
|
||
|
|
||
|
pass
|