xy-server/game/event/GiveNpcItem.ts

17 lines
333 B
TypeScript
Raw Permalink Normal View History

2025-04-23 09:34:08 +08:00
import EventBase from "./EventBase";
export default class GiveNpcItem extends EventBase {
nItemID:number;
nNum:number;
nFromNpc:any;
nNpcConfigID:any;
strTip2:any;
constructor() {
super();
this.nItemID = 0;
this.nNum = 0;
this.nFromNpc;
this.nNpcConfigID;
}
}