1
0
Fork 0
spacetac/src/scripts/view/battle/ShipListItem.ts

23 lines
795 B
TypeScript
Raw Normal View History

module SpaceTac.View {
// One item in a ship list (used in BattleView)
export class ShipListItem extends Phaser.Button {
2014-12-31 00:00:00 +00:00
// Reference to the ship game object
private ship: Game.Ship;
// Create a ship button for the battle ship list
2014-12-31 00:00:00 +00:00
constructor(battleview: BattleView, x: number, y: number, ship:Game.Ship, owned: boolean) {
this.ship = ship;
super(battleview.game, x, y, owned ? 'ui-shiplist-own' : 'ui-shiplist-enemy');
battleview.ui.add(this);
this.input.useHandCursor = true;
2014-12-31 00:00:00 +00:00
this.onInputOver.add(() => {
battleview.cursorOnShip(ship);
});
this.onInputOut.add(() => {
battleview.cursorOffShip(ship);
});
}
}
}