コード例 #1
0
ファイル: CDemo.cpp プロジェクト: Enucatl/bombermaaan-x
void CDemo::Destroy (void)
{
    CModeScreen::Destroy();

    m_Font.Destroy();
    m_AiManager.Destroy();

    StopSong();
    DestroyHurryUpMessage();
    DestroyMainComponents();
}
コード例 #2
0
ファイル: CMatch.cpp プロジェクト: lukehsiao/BYU_Bomberman
void CMatch::Destroy (void)
{
    CModeScreen::Destroy();

    if ( computerPlayersPresent ) {
        m_AiManager.Destroy();
    }

    DestroyHurryUpMessage();
    DestroyPauseMessage();
    DestroyMainComponents();
    StopSong();
}