Executes some code in the main app.
Example - 2
cfg.Game;
function OnLoad()
{
gfx.AppExec( "app.ShowPopup('Hello from Game')");
}
function OnReady() {}
from native import app
def OnLoad():
gfx.AppExec( "app.ShowPopup('Hello from Game')" )
def OnReady():
pass