コード例 #1
0
 public ClientShopStartSellingEventArgs(ShopStartSellingInfo i)
 {
     info = i;
 }
コード例 #2
0
        public static ShopStartSellingInfo RecvShopStartSelling(Packet p)
        {
            p.Skip(2);
            byte selling = p.ReadByte();

            ShopStartSellingInfo i = new ShopStartSellingInfo
            {
                Selling = Convert.ToBoolean(selling)
            };

            return i;
        }