예제 #1
0
파일: Item.cs 프로젝트: Valhyra/Horizon
        /// <summary>
        /// Creates a new json data model, populates it with this item's data, and saves it to disk.
        /// </summary>
        public void Save()
        {
            ItemFile itemFile = new ItemFile();

            itemFile.PopulateFile(this);
            itemFile.Save();
        }