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