I'm going to just store the globals in the globals class I suppose.
Ok, another quick question.
$Modules['Core']['Globals'] = new Globals();
$Modules['Core']['Platform'] = new Platform();
I want to create a "shortcut" so that $Platform = $Modules['Core']['Platform']. Would I just do
$Platform = $Modules['Core']['Platform'];
or would I have to setup some type of pointer or something.