10 lines
194 B
C#
10 lines
194 B
C#
using Godot;
|
|
using System;
|
|
|
|
public partial class SunCounter : Label
|
|
{
|
|
public override void _Process(double delta)
|
|
{
|
|
Text = RuntimeLevelData.Instance.SunCount.ToString();
|
|
}
|
|
}
|