少年修仙传客户端代码仓库
client_linchunjie
2019-03-14 d0d289d502fe85e9bb597ced1b41c73b8bc75889
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;
        }
    }