Esempio n. 1
0
        public Item(string name,string description)
        {
            this.Name = name;
            this.Description = description;
            this.MaxStackCount = 1;
            this.categoryChoiceID = 0;

            ItemProperties = new List<ItemProperty>();
            itemCategory = new ItemCategory();
        }