Exemplo n.º 1
0
        internal Savegame(IMainFormAPI appAPI, string filename)
        {
            Debug.Assert(appAPI != null);
            m_AppAPI = appAPI;

            Debug.Assert(!string.IsNullOrWhiteSpace(filename));
            m_Filename = filename;
        }
Exemplo n.º 2
0
 internal SavegameManager(IMainFormAPI appAPI)
 {
     Debug.Assert(appAPI != null);
     m_AppAPI = appAPI;
 }