WoW Model Viewer
Your premiere tool for viewing, equipping and animating World of Warcraft models.
Loading...
Searching...
No Matches
main.cpp
Go to the documentation of this file.
1// ============================================================================
2// WoW Model Viewer — entry point
3//
4// All application logic lives in the Application class. This file exists
5// solely to provide the CRT entry point.
6// ============================================================================
7
8#include "Application.h"
9
10int main(int /*argc*/, char* /*argv*/[])
11{
12 Application app;
13 return app.run();
14}
int main(int, char *[])
Definition main.cpp:10