選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

17 行
337 B

  1. #ifndef HACKTHEGAME_BATTLESYSTEM_VERSION_000_HPP
  2. #define HACKTHEGAME_BATTLESYSTEM_VERSION_000_HPP
  3. #include "src/class/monster.hpp"
  4. #include "src/class/player.hpp"
  5. class Battle
  6. {
  7. private:
  8. static bool win;
  9. public:
  10. static bool Won();
  11. static bool Lose();
  12. static void Start(Player *player, Monster *monster);
  13. };
  14. #endif