1
0
Fork 0
spacetac/src/scripts/game/Fleet.ts

15 lines
303 B
TypeScript
Raw Normal View History

2014-12-29 00:00:00 +00:00
module SpaceTac.Game {
// A fleet of ships
export class Fleet {
// Fleet owner
player: Player;
// List of ships
ships: Ship[];
// Create a fleet, bound to a player
constructor(player: Player) {
this.player = player;
}
}
}