home *** CD-ROM | disk | FTP | other *** search
- function getScore()
- {
- return gameMC.gScore;
- }
- function showDebugWindow()
- {
- gameMC.debug_clip.showDebug();
- }
- function hideDebugWindow()
- {
- gameMC.debug_clip.hideDebug();
- }
- function pause()
- {
- gameMC.gPaused = true;
- }
- function unPause()
- {
- gameMC.gPaused = false;
- }
- function restart()
- {
- containerMC.resetContainer();
- containerMC.init();
- gameMC.gScore = 0;
- gameMC.gLevel = 1;
- gameMC.gTotalMin = 0;
- gameMC.gTotalSec = 0;
- gameMC.gSkipState = false;
- }
-