コード例 #1
0
ファイル: GameSaveDataBase.cs プロジェクト: arclee/taptofinal
 public void ReadFromXML(string filepathname)
 {
     GameCrypto.ReadText(filepathname, ReadCB, useCrypto, filepathname + "c");
     //GameCrypto.ReadBin(filepathname, ReadBinCB, useCrypto, filepathname+"c");
 }
コード例 #2
0
ファイル: GameSaveDataBase.cs プロジェクト: arclee/taptofinal
 public void WriteToXML(string filepathname)
 {
     GameCrypto.WriteText(filepathname, WriteCB, useCrypto, filepathname + "c");
     //GameCrypto.WriteBin(filepathname, WriteBinCB, useCrypto, filepathname+"c");
 }