feat: more plugin work and intra-scope communication

This commit is contained in:
redglow
2026-07-18 10:56:54 +02:00
parent 7c16dddbd0
commit ce58a3a2c2
22 changed files with 246 additions and 56 deletions
+7
View File
@@ -0,0 +1,7 @@
namespace GodotHostTest.Interfaces;
public interface ICurrentLevel
{
public int LevelNumber { get; }
public void NextLevel();
}
+3
View File
@@ -1,5 +1,8 @@
using System;
namespace GodotHostTest.Interfaces;
public interface ILevel
{
public TimeSpan TimeBetweenSpawns { get; }
}
+6
View File
@@ -0,0 +1,6 @@
namespace GodotHostTest.Interfaces;
public interface ILevelDataProvider
{
public ILevel GetLevelData(int levelNumber);
}