Files
godot-host-test/Game/Level/CurrentLevel.cs
T
2026-07-18 17:05:03 +02:00

13 lines
233 B
C#

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