13 lines
227 B
C#
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++;
|
|
}
|
|
} |