1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-01 03:21:41 +00:00
OpenMW/components/interpreter/defines.hpp

15 lines
378 B
C++
Raw Normal View History

#ifndef INTERPRETER_DEFINES_H_INCLUDED
#define INTERPRETER_DEFINES_H_INCLUDED
#include "context.hpp"
2022-09-22 18:26:05 +00:00
#include <string>
2022-09-22 18:26:05 +00:00
namespace Interpreter
{
std::string fixDefinesDialog(std::string_view text, Context& context);
std::string fixDefinesMsgBox(std::string_view text, Context& context);
std::string fixDefinesBook(std::string_view text, Context& context);
}
#endif