andrew@2: #include "testApp.h" andrew@2: #include "ofAppGlutWindow.h" andrew@2: andrew@2: //-------------------------------------------------------------- andrew@2: int main(){ andrew@2: ofAppGlutWindow window; // create a window andrew@2: // set width, height, mode (OF_WINDOW or OF_FULLSCREEN) andrew@2: ofSetupOpenGL(&window, 1024, 768, OF_WINDOW); andrew@2: ofRunApp(new testApp()); // start the app andrew@2: }