mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-29 18:32:36 +00:00
13 lines
228 B
C++
13 lines
228 B
C++
|
#ifndef MWLUA_DIALOGUEBINDINGS_H
|
||
|
#define MWLUA_DIALOGUEBINDINGS_H
|
||
|
|
||
|
#include <sol/forward.hpp>
|
||
|
|
||
|
namespace MWLua
|
||
|
{
|
||
|
struct Context;
|
||
|
sol::table initCoreDialogueBindings(const Context&);
|
||
|
}
|
||
|
|
||
|
#endif // MWLUA_DIALOGUEBINDINGS_H
|