11 lines
199 B
C#
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();
|
|
}
|
|
}
|