Initial push

This commit is contained in:
N0ble 2025-07-21 20:38:11 -06:00
commit 3240f07946
335 changed files with 11248 additions and 0 deletions

View file

@ -0,0 +1,11 @@
extends Node
@onready var title : Label = $Name
@onready var value : Label = $Value
@onready var weight : Label = $Weight
func set_values(new_title : String, new_value : int, new_weight : int) -> void:
title.text = new_title
value.text = str(new_value)
weight.text = str(new_weight)