Files
godot-host-test/Interfaces/ICurrentLevel.cs
T
redglow e7dbb9cabb .
2026-07-21 20:49:24 +02:00

9 lines
173 B
C#

using R3;
namespace GodotHostTest.Interfaces;
public interface ICurrentLevel
{
public ReadOnlyReactiveProperty<int> LevelNumber { get; }
public void NextLevel();
}