13 lines
276 B
C#
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();
|
|
|
|
} |