少年修仙传客户端代码仓库
client_Wu Xijin
2018-10-11 8b69bbb9639d2667d43383e40a6758fcc5457527
System/Backpack/BackpackData.cs
@@ -13,12 +13,14 @@
        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)
@@ -26,6 +28,15 @@
            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;
        }
    }