예제 #1
0
파일: Item.cs 프로젝트: Reaw/InventoryLight
        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();
        }