Tic-Tac-Toe/Tic Tac Toe/main.cpp

20 lines
330 B
C++
Raw Permalink Normal View History

2019-03-06 21:43:26 +00:00
#include <iostream>
#include <Windows.h>
#include "Framework.hpp"
int APIENTRY WinMain(HINSTANCE hInstance,
HINSTANCE hPrevInstance,
LPSTR lpCmdLine,
int nShowCmd)
{
Framework frmwrk(800, 800, "Tic Tac Toe, x64");
if (!frmwrk.Run())
{
std::cerr << "Runtime Error." << std::endl;
return 1;
}
return 0;
}