Refactor backend into domain-first slices
This commit is contained in:
11
apps/backend/Ships/AI/IShipBehaviorState.cs
Normal file
11
apps/backend/Ships/AI/IShipBehaviorState.cs
Normal file
@@ -0,0 +1,11 @@
|
||||
|
||||
namespace SpaceGame.Api.Ships.AI;
|
||||
|
||||
internal interface IShipBehaviorState
|
||||
{
|
||||
string Kind { get; }
|
||||
|
||||
void Plan(SimulationEngine engine, ShipRuntime ship, SimulationWorld world);
|
||||
|
||||
void ApplyEvent(SimulationEngine engine, ShipRuntime ship, SimulationWorld world, string controllerEvent);
|
||||
}
|
||||
Reference in New Issue
Block a user