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

17 lines
228 B
C++

// Bulls and Cows the game
// bulls-and-cows.cpp
//
#include "SetUserLocale.h"
#include "CGame.h"
int wmain(int argc, wchar_t* argv[])
{
if (!SetUserLocale()) return 1;
CGame game;
game.Init();
game.Start();
return 0;
}