9 lines
173 B
C#
9 lines
173 B
C#
using R3;
|
|
|
|
namespace GodotHostTest.Interfaces;
|
|
|
|
public interface ICurrentLevel
|
|
{
|
|
public ReadOnlyReactiveProperty<int> LevelNumber { get; }
|
|
public void NextLevel();
|
|
} |