#include <gre/gre.h>
int gr_application_run(
gr_application_t * handle
);
The gr_application_run function creates the application handle for the Storyboard Engine.
The application handle can be used to further configure the engine or to start it's execution.
Parameters:
handle A pointer to an application handle created using gr_application_create_args.
Returns:
A zero on success and a non-zero status code on failure.
The gr_application_run will start the execution of the Storyboard Engine's main event loop.
This call will only return when the engine has terminated.