openmw/components/interpreter/defines.hpp

15 lines
384 B
C++
Raw Normal View History

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