25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
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