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