summaryrefslogtreecommitdiff
path: root/src/test.cc
blob: 679c89339650865682fd028b206240b4ef9aae30 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include "glbase.h"
#include <Main.h>

CODE_BEGINS

virtual int startup(void) throw(GeneralException) {
    verbosity = M_INFO;

    mogltk::glbase::glVertex(3.0, 3.0);
    return 0;
}

CODE_ENDS