Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 
 
 

14 wiersze
239 B

#ifndef HACKTHEGAME_SAVELOAD_HPP
#define HACKTHEGAME_SAVELOAD_HPP
#include "src/class/player.hpp"
#include <fstream>
class Memory
{
public:
static Player *loadFromCode(std::string);
static std::string saveToCode(Player *);
};
#endif