summaryrefslogtreecommitdiff
path: root/gltest.cpp
blob: ab0aa5156eee3a5d65e621d6480a3bcf6c8c7b3a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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