mirror of
https://gitflic.ru/project/w0lf/bulls-and-cows-cpp.git
synced 2026-03-28 16:02:46 +03:00
17 lines
228 B
C++
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;
|
|
}
|