Files
godot-host-test/Game/CurrentLevel.cs
T

13 lines
227 B
C#

using GodotHostTest.Interfaces;
namespace GodotHostTest.Game;
public class CurrentLevel : ICurrentLevel
{
public int LevelNumber { get; private set; } = 1;
public void NextLevel()
{
LevelNumber++;
}
}