1
0
Fork 0
spacetac/src/scripts/game/ai/ManeuverSequence.ts

18 lines
386 B
TypeScript
Raw Normal View History

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