OptionsTabBase.h 539 B

12345678910111213141516171819202122
  1. /*
  2. * OptionsTabBase.h, part of VCMI engine
  3. *
  4. * Authors: listed in file AUTHORS in main folder
  5. *
  6. * License: GNU General Public License v2.0 or later
  7. * Full text of license available in license.txt file, in main folder
  8. *
  9. */
  10. #pragma once
  11. #include "../gui/InterfaceObjectConfigurable.h"
  12. #include "../../lib/filesystem/ResourcePath.h"
  13. /// The options tab which is shown at the map selection phase.
  14. class OptionsTabBase : public InterfaceObjectConfigurable
  15. {
  16. public:
  17. OptionsTabBase(const JsonPath & configPath);
  18. void recreate();
  19. };