1
0
Fork 0
spacetac/src/core/events/EndBattleEvent.ts

17 lines
418 B
TypeScript
Raw Normal View History

/// <reference path="BaseBattleEvent.ts"/>
2015-02-09 00:00:00 +00:00
2017-02-09 00:00:35 +00:00
module TS.SpaceTac {
2015-02-09 00:00:00 +00:00
// Event logged when the battle ended
// This is always the last event of a battle log
export class EndBattleEvent extends BaseBattleEvent {
// Outcome of the battle
outcome: BattleOutcome;
2015-02-09 00:00:00 +00:00
constructor(outcome: BattleOutcome) {
2015-02-09 00:00:00 +00:00
super("endbattle");
this.outcome = outcome;
2015-02-09 00:00:00 +00:00
}
}
}