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

13 lines
260 B
TypeScript
Raw Normal View History

2015-02-09 00:00:00 +00:00
/// <reference path="BaseLogEvent.ts"/>
module SpaceTac.Game {
"use strict";
// Event logged when a ship is dead
export class DeathEvent extends BaseLogEvent {
constructor(ship: Ship) {
super("death", ship);
}
}
}