System Utilities
C4Application.h

Application::ApplicationTask

Called once per application loop to allow the Application Module to perform periodic processing.
Prototype

virtual void ApplicationTask(void);

Description
The ApplicationTask function is called once per frame after input has been processed and before anything in the world is moved or rendered. The Application Module may perform any type of periodic processing that is necessary at this time. The default implementation of this function performs no action.
See Also
Application::WorldRenderTask

Application::InterfaceRenderTask