Correct field's initialization

This commit is contained in:
2025-07-07 02:33:19 +03:00
parent d4d3ade78b
commit f13bf95ba2
11 changed files with 265 additions and 14 deletions

13
src/BattleCap.cpp Normal file
View File

@@ -0,0 +1,13 @@
// BattleCap.cpp: определяет точку входа для приложения.
//
#include "stdafx.h"
int main()
{
Game game;
game.init();
game.play();
return 0;
}