GameManager

The GameManager is the highest-level class used by the GameCore scripting system. Many other scripting classes are accessed through the GameManager class.

To get a handle to the GameManager, simply call the global function GetGameManager() like so:

GameManager@ game = GetGameManager();

You can also use this function 'inline'.  For example:

GetGameManager().ClearText();