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

11 lines
267 B
TypeScript
Raw Normal View History

module SpaceTac.Game {
2015-01-07 00:00:00 +00:00
"use strict";
2014-12-31 00:00:00 +00:00
// Event logged when a ship moves
export class MoveEvent extends BaseLogEvent {
constructor(ship: Ship, x: number, y: number) {
super("move", ship, Target.newFromLocation(x, y));
}
}
2015-01-07 00:00:00 +00:00
}