コード例 #1
0
ファイル: Savegame.cs プロジェクト: nmates/KoaSaveEditor
        internal Savegame(IMainFormAPI appAPI, string filename)
        {
            Debug.Assert(appAPI != null);
            m_AppAPI = appAPI;

            Debug.Assert(!string.IsNullOrWhiteSpace(filename));
            m_Filename = filename;
        }
コード例 #2
0
 internal SavegameManager(IMainFormAPI appAPI)
 {
     Debug.Assert(appAPI != null);
     m_AppAPI = appAPI;
 }