9 lines
215 B
TypeScript
9 lines
215 B
TypeScript
|
import EventStateBase from "./EventStateBase";
|
||
|
|
||
|
export default class KillDynamicNpcState extends EventStateBase {
|
||
|
vecRemainNpc: any[];
|
||
|
constructor() {
|
||
|
super();
|
||
|
this.vecRemainNpc = [];
|
||
|
}
|
||
|
}
|