コード例 #1
0
ファイル: SinglePlayer.cs プロジェクト: CaileyBianchini/Topia
        //this loads the functions value
        public void Load()
        {
            StreamReader reader = new StreamReader("SaveAdventure.txt");

            //save the characters stats
            _player.Load(reader);
            //closes reader
            reader.Close();
        }