18 lines
354 B
C++
18 lines
354 B
C++
#ifndef _DEBUG
|
|
#pragma comment( linker, "/subsystem:\"windows\" /entry:\"mainCRTStartup\"" )
|
|
#endif // DEBUG
|
|
|
|
#include "OpenGLController.h"
|
|
|
|
int main(int argc, char** argv)
|
|
{
|
|
OpenGLController scene = OpenGLController::getInstance();
|
|
|
|
//scene.loadMsh("");
|
|
|
|
do {
|
|
scene.updateScene();
|
|
} while (!glfwWindowShouldClose(scene.getWindow()));
|
|
|
|
return 0;
|
|
} |