mirror of
https://github.com/borgesdan/xn65
synced 2024-12-29 21:54:47 +01:00
20 lines
359 B
C++
20 lines
359 B
C++
// xna.cpp : Defines the entry point for the application.
|
|
//
|
|
|
|
#include "xna.h"
|
|
|
|
using namespace std;
|
|
using namespace xna;
|
|
|
|
//int main()
|
|
//{
|
|
// cout << "Hello CMake." << endl;
|
|
// return 0;
|
|
//}
|
|
|
|
int APIENTRY WinMain(_In_ HINSTANCE hInstance, _In_opt_ HINSTANCE hPrevInstance, _In_ LPSTR lpCmdLine, _In_ int nCmdShow) {
|
|
Game game;
|
|
game.Run();
|
|
return 0;
|
|
}
|