Cambiada la carpeta common a jail_engine

This commit is contained in:
2023-05-06 18:06:29 +02:00
parent adab0b420c
commit 284f7d5bad
58 changed files with 132 additions and 132 deletions

View File

@@ -0,0 +1,16 @@
#pragma once
#include <string>
namespace jscore {
void init(std::string host, const int port);
const bool initOnlineScore(std::string game);
const int getNumUsers();
std::string getUserName(const int index);
const int getPoints(const int index);
const int getUserPoints(std::string game, std::string user);
const bool updateUserPoints(std::string game, std::string user, const int points);
std::string getUserData(std::string game, std::string user);
void setUserData(std::string game, std::string user, std::string data);
};