Files
Nocturnis/src/Enigmos/Modules/IRootModule.cs
2024-07-03 12:20:08 +08:00

13 lines
276 B
C#

using System.Diagnostics;
using Nocturnis.Creatures;
namespace Nocturnis.Enigmos.Modules;
public interface IRootModule : IRoutingModule
{
Stopwatch? Timer { get; set; }
bool ActionFinished { get; set; }
IBaseCreature? ManagedBy { get; set; }
void Start();
}