You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ryzom-core/code/nel/samples/3d/qtnel/main.cpp

17 lines
278 B
C++

15 years ago
#include <QApplication>
#include <nel/misc/app_context.h>
#include "qnelwindow.h"
int main(int argc, char *argv[])
{
NLMISC::CApplicationContext myApplicationContext;
QApplication app(argc, argv);
QNelWindow window;
window.show();
return app.exec();
}