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(); }