diff options
-rw-r--r-- | gltest.cpp | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/gltest.cpp b/gltest.cpp new file mode 100644 index 0000000..ab0aa51 --- /dev/null +++ b/gltest.cpp @@ -0,0 +1,13 @@ +#include <SDL.h> +#include "generic.h" +#include "Main.h" +#include "glbase.h" + +CODE_BEGINS +virtual int startup() throw (GeneralException) { + verbosity = M_INFO; + mogltk::glbase::setup(); + sleep(5); + return 0; +} +CODE_ENDS |