您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

13 行
239 B

  1. #ifndef HACKTHEGAME_SAVELOAD_HPP
  2. #define HACKTHEGAME_SAVELOAD_HPP
  3. #include "src/class/player.hpp"
  4. #include <fstream>
  5. class Memory
  6. {
  7. public:
  8. static Player *loadFromCode(std::string);
  9. static std::string saveToCode(Player *);
  10. };
  11. #endif