Split project

This commit is contained in:
h z
2024-06-29 06:35:23 +08:00
commit 6e01c31061
54 changed files with 496 additions and 0 deletions

8
src/Scenes/IRootScene.cs Normal file
View File

@@ -0,0 +1,8 @@
using Godot;
namespace Nocturnis.Scenes;
public interface IRootScene
{
void ChangeScene(Node scene);
}