選択できるのは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