(svn r24537) -Feature: Scripts can be suspended even if the game is still progressing, thus break-on-log now works also for Game Scripts.
This commit is contained in:
@@ -117,6 +117,21 @@
|
||||
}
|
||||
}
|
||||
|
||||
/* static */ void Game::Pause()
|
||||
{
|
||||
if (Game::instance != NULL) Game::instance->Pause();
|
||||
}
|
||||
|
||||
/* static */ void Game::Unpause()
|
||||
{
|
||||
if (Game::instance != NULL) Game::instance->Unpause();
|
||||
}
|
||||
|
||||
/* static */ bool Game::IsPaused()
|
||||
{
|
||||
return Game::instance != NULL? Game::instance->IsPaused() : false;
|
||||
}
|
||||
|
||||
/* static */ void Game::NewEvent(ScriptEvent *event)
|
||||
{
|
||||
/* AddRef() and Release() need to be called at least once, so do it here */
|
||||
|
Reference in New Issue
Block a user