1
0
Fork 0
spacetac/src/core/ai/ManeuverSequence.ts

16 lines
365 B
TypeScript
Raw Normal View History

module TS.SpaceTac {
2015-03-12 00:00:00 +00:00
// A chain of Maneuver to execute sequentially
export class ManeuverSequence {
2015-03-12 00:00:00 +00:00
// Concerned ship
ship: Ship;
// Sequence of maneuvers
maneuvers: Maneuver[];
constructor(ship: Ship, maneuvers: Maneuver[]) {
this.ship = ship;
this.maneuvers = maneuvers;
}
}
}