Files
fgj-26/Scripts/UI/PriceUpdater.cs
T
2026-02-01 14:06:04 +02:00

11 lines
199 B
C#

using Godot;
using System;
public partial class PriceUpdater : Label
{
public override void _Process(double delta)
{
Text = TurretController.Instance.TurretPrice.ToString();
}
}