Upgrade structure of code base

This commit is contained in:
h z
2024-07-03 12:20:08 +08:00
parent d382481cd4
commit 42e06a0d0c
82 changed files with 864 additions and 116 deletions

View File

@@ -3,10 +3,11 @@ using Nocturnis.Creatures;
namespace Nocturnis.Enigmos.Modules;
public interface IRootModule : IControllingModule
public interface IRootModule : IRoutingModule
{
Stopwatch? Timer { get; set; }
bool ActionFinished { get; set; }
IBaseCreature ManagedBy { get; set; }
IBaseCreature? ManagedBy { get; set; }
void Start();
}