diff options
Diffstat (limited to 'src/map/script-parse.hpp')
-rw-r--r-- | src/map/script-parse.hpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/map/script-parse.hpp b/src/map/script-parse.hpp index b8b5012..360711e 100644 --- a/src/map/script-parse.hpp +++ b/src/map/script-parse.hpp @@ -24,10 +24,12 @@ #include <memory> +#include "script-buffer.hpp" + namespace tmwa { -std::unique_ptr<const ScriptBuffer> compile_script(const ast::script::ScriptBody& body, bool implicit_end); +std::unique_ptr<const ScriptBuffer> compile_script(RString debug_name, const ast::script::ScriptBody& body, bool implicit_end); extern Map<ScriptLabel, int> scriptlabel_db; |