Esempio n. 1
0
 public ChestOpenEventArgs(int x, int y, int playerid, NetItem[] items, string account, ChestFlags flags)
 {
     this.X = x;
     this.Y = y;
     this.Items = items;
     this.Account = account;
     this.Flags = flags;
     this.Who = playerid;
 }
Esempio n. 2
0
 public ChestItemEventArgs(int x, int y, int playerid, NetItem itemIn, NetItem itemOut, int slot, string account, ChestFlags flags)
 {
     this.X = x;
     this.Y = y;
     this.ItemPutIn = itemIn;
     this.ItemTakenOut = itemOut;
     this.Account = account;
     this.Flags = flags;
     this.Slot = slot;
     this.Who = playerid;
 }