render.h 455 B

123456789101112131415161718192021
  1. /*
  2. * render.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 "BAI/v13/action.h"
  12. #include "BAI/v13/state.h"
  13. #include "schema/base.h"
  14. namespace MMAI::BAI::V13
  15. {
  16. std::string Render(const Schema::IState * istate, const Action * action);
  17. void Verify(const State * state);
  18. }