project update

This commit is contained in:
h z
2024-06-30 01:52:44 +08:00
parent 6e01c31061
commit d382481cd4
26 changed files with 92 additions and 30 deletions

View File

@@ -1,6 +1,12 @@
using System.Diagnostics;
using Nocturnis.Creatures;
namespace Nocturnis.Enigmos.Modules;
public interface IRootModule
public interface IRootModule : IControllingModule
{
Stopwatch? Timer { get; set; }
bool ActionFinished { get; set; }
IBaseCreature ManagedBy { get; set; }
}