예제 #1
0
 protected NpcEventCommand(NpcEventReceiverContext context)
 {
     Context = context;
 }
 public EventShowTextCommand(NpcEventReceiverContext context, string stringTableId)
     : base(context)
 {
     _stringTableId = stringTableId;
 }
 public EventGiveItemCommand(NpcEventReceiverContext context, Item item)
     : base(context)
 {
     _item = item;
 }