Difference between revisions of "Unification Main Loop"
From Wikiid
SteveBaker (Talk | contribs) (New page: The Unification main loop simply causes all of the game subsystems to update themselves: while ( 1 ) { updateClock () ; updateEvents () ; updateObjects ...) |
(No difference)
|
Latest revision as of 07:03, 26 February 2008
The Unification main loop simply causes all of the game subsystems to update themselves:
while ( 1 )
{
updateClock () ;
updateEvents () ;
updateObjects ( eventHandler ) ;
updateCamera () ;
updateDatabase () ;
updateSky () ;
updateParticles () ;
updateGraphics () ;
updateScreen () ;
}