feat: more plugin work and intra-scope communication
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
using GodotHostTest.Interfaces;
|
||||
|
||||
namespace GodotHostTest.Game;
|
||||
|
||||
public class CurrentLevel : ICurrentLevel
|
||||
{
|
||||
public int LevelNumber { get; private set; } = 1;
|
||||
|
||||
public void NextLevel()
|
||||
{
|
||||
LevelNumber++;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user