Files
bulls-and-cows-cpp/bulls-and-cows-cpp/bulls-and-cows.cpp

19 lines
267 B
C++

// bulls-and-cows.cpp
//
#include <Windows.h>
#include "..\..\..\MyFunctions\SetUserLocale.h"
#include "CGame.h"
//#include <iostream>
int wmain(int argc, wchar_t* argv[])
{
if (!SetUserLocale()) return 1;
CGame game;
game.Init(4);
game.Start();
return 0;
}