You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
201 B

  1. #ifndef FLAG_HACKTHEGAME_HPP
  2. #define FLAG_HACKTHEGAME_HPP
  3. #include <string>
  4. class Flag
  5. {
  6. private:
  7. static std::string flag;
  8. static bool Load();
  9. public:
  10. static void Print();
  11. };
  12. #endif