コード例 #1
0
 public ClientCombineItemsEvenArgs(CombineItemsInfo i)
 {
     info = i;
 }
コード例 #2
0
        public static CombineItemsInfo RecvCombineItems(Packet p)
        {
            p.Skip(2);
            byte something = p.ReadByte();
            byte something2 = p.ReadByte();
            int itemId = p.ReadInt();
            byte bag = p.ReadByte();
            byte slot = p.ReadByte();

            CombineItemsInfo i = new CombineItemsInfo
            {
                ItemID = itemId,
                Bag = bag,
                Slot = slot
            };

            return i;
        }