2014-12-13 01:47:04 +00:00
|
|
|
#ifndef OPENMW_MWDIALOGUE_SCRIPTTEST_H
|
|
|
|
#define OPENMW_MWDIALOGUE_SCRIPTTEST_H
|
|
|
|
|
|
|
|
#include <components/compiler/extensions.hpp>
|
|
|
|
|
|
|
|
namespace MWDialogue
|
|
|
|
{
|
|
|
|
|
2022-09-22 18:26:05 +00:00
|
|
|
namespace ScriptTest
|
|
|
|
{
|
2014-12-13 01:47:04 +00:00
|
|
|
|
2022-09-22 18:26:05 +00:00
|
|
|
/// Attempt to compile all dialogue scripts, use for verification purposes
|
|
|
|
/// @return A pair containing <total number of scripts, number of successfully compiled scripts>
|
|
|
|
std::pair<int, int> compileAll(const Compiler::Extensions* extensions, int warningsMode);
|
2014-12-13 01:47:04 +00:00
|
|
|
|
2022-09-22 18:26:05 +00:00
|
|
|
}
|
2014-12-13 01:47:04 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|