mirror of
https://gitflic.ru/project/w0lf/bulls-and-cows-cpp.git
synced 2026-03-29 00:12:46 +03:00
19 lines
267 B
C++
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;
|
|
}
|