少年修仙传客户端代码仓库
client_Wu Xijin
2019-03-13 f5e39c2a98f3217e89518a91071d992269db1bdb
System/Backpack/BackpackData.cs
@@ -12,30 +12,19 @@
    {
        public int id;
        public int count;
        public bool bind;
        public int quality;
        public Item(int _id, int _count)
        {
            this.id = _id;
            this.count = _count;
            this.bind = false;
            this.quality = 0;
        }
        public Item(int _id, int _count, bool _bind)
        public Item(int _id, int _count, int _quality)
        {
            this.id = _id;
            this.count = _count;
            this.bind = _bind;
            this.quality = 0;
        }
        public Item(int _id, int _count, bool _bind, int _quality)
        {
            this.id = _id;
            this.count = _count;
            this.bind = _bind;
            this.quality = _quality;
        }
    }