summaryrefslogtreecommitdiff
path: root/gltest.cpp
diff options
context:
space:
mode:
authorPixel <Pixel>2002-11-04 15:21:34 +0000
committerPixel <Pixel>2002-11-04 15:21:34 +0000
commit149090f807a523b43a80721e0d4622ca64fad9bc (patch)
tree5ee4c8a4eb002efe366215fbcbdfb30cb887ba19 /gltest.cpp
parent3c66eb3ecfa32f3fc1ffdcc9ac584a32ecf6ddc3 (diff)
And forgot another file...
Diffstat (limited to 'gltest.cpp')
-rw-r--r--gltest.cpp13
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