1
0
Fork 0
spacetac/src/game/events/EffectRemovedEvent.ts

16 lines
398 B
TypeScript
Raw Normal View History

/// <reference path="BaseLogEvent.ts"/>
module SpaceTac.Game {
2017-01-23 23:07:54 +00:00
// Event logged when a sticky effect is removed from a ship
export class EffectRemovedEvent extends BaseLogEvent {
// Pointer to the effect
2017-01-23 23:07:54 +00:00
effect: StickyEffect;
2017-01-23 23:07:54 +00:00
constructor(ship: Ship, effect: StickyEffect) {
super("effectdel", ship);
this.effect = effect;
}
}
}