mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-01 03:21:41 +00:00
13 lines
286 B
C++
13 lines
286 B
C++
|
#ifndef GAME_MWMECHANICS_DEFINES_H
|
||
|
#define GAME_MWMECHANICS_DEFINES_H
|
||
|
|
||
|
#include <string>
|
||
|
#include "context.hpp"
|
||
|
|
||
|
namespace Interpreter{
|
||
|
std::string fixDefinesDialog(std::string text, Context& context);
|
||
|
std::string fixDefinesMsgBox(std::string text, Context& context);
|
||
|
}
|
||
|
|
||
|
#endif
|