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

16 lines
400 B
TypeScript

/// <reference path="BaseLogEvent.ts"/>
module TS.SpaceTac {
// Event logged when a sticky effect is removed from a ship
export class EffectRemovedEvent extends BaseLogShipEvent {
// Pointer to the effect
effect: StickyEffect;
constructor(ship: Ship, effect: StickyEffect) {
super("effectdel", ship);
this.effect = effect;
}
}
}