xy-server/game/event/KillDynamicNpcState.ts

9 lines
215 B
TypeScript
Raw Normal View History

2025-04-23 09:34:08 +08:00
import EventStateBase from "./EventStateBase";
export default class KillDynamicNpcState extends EventStateBase {
vecRemainNpc: any[];
constructor() {
super();
this.vecRemainNpc = [];
}
}