Initial commit on develop branch

This commit is contained in:
2026-04-17 20:07:57 +03:30
commit 9b68b97ae6
52 changed files with 3499 additions and 0 deletions
@@ -0,0 +1,17 @@
#pragma once
#include <string>
#include "../Structures/MultiPlayerGame.h"
#include "../Structures/SinglePlayerGame.h"
void saveGame(SinglePlayerGame* game);
void saveGame(MultiPlayerGame* game);
SinglePlayerGame getSinglePlayerGame(int id);
MultiPlayerGame getMultiPlayerGame(int id);
std::string getGameById(int gameId);
void syncGameHistoryWithLimit();
std::string getProperty(int propertyId, std::string game);
int getSavedBoardElementCount(std::string board);
int getGameId(std::string game);
int getFirstGameId();
int getLastGameId();