1
0
Fork 0
spacetac/src/scripts/game/events/DeathEvent.ts

11 lines
219 B
TypeScript
Raw Normal View History

module SpaceTac.Game {
"use strict";
// Event logged when a ship is dead
export class DeathEvent extends BaseLogEvent {
constructor(ship: Ship) {
super("death", ship);
}
}
}