refactor: redesign project structure

This commit is contained in:
h z
2025-02-16 22:36:38 +00:00
parent 5a981c91ee
commit f290b52fa3
12 changed files with 136 additions and 113 deletions

View File

@@ -0,0 +1,8 @@
namespace Polonium.Interfaces;
public interface IGlobalRegistry
{
public bool Paused { get; set; }
public void Start();
public void Prepare();
}