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

18 lines
399 B
TypeScript

module SpaceTac.Game.AI {
"use strict";
// Base class for all Artificial Intelligence interaction
export class AbstractAI {
// The battle this AI is involved in
battle: Battle;
// The fleet controlled by this AI
fleet: Fleet;
constructor(fleet: Fleet) {
this.fleet = fleet;
this.battle = fleet.battle;
}
}
}