import { SessionBehavior } from '../../runtime/SessionBehavior'; import { ISystemAct } from '../../systemActs/SystemAct'; /** * Defines the result of processing a turn using Controls. * * This is the minimal definition required by the Runtime (ControlHandler) See * `ControlResult` for the actual class used by Control implementations. */ export interface IControlResult { acts: ISystemAct[]; sessionBehavior: SessionBehavior; hasInitiativeAct(): boolean; } //# sourceMappingURL=IControlResult.d.ts.map