mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-30 12:32:36 +00:00
13 lines
262 B
C++
13 lines
262 B
C++
|
#ifndef MWLUA_OBJECTBINDINGS_H
|
||
|
#define MWLUA_OBJECTBINDINGS_H
|
||
|
|
||
|
#include "context.hpp"
|
||
|
|
||
|
namespace MWLua
|
||
|
{
|
||
|
void initObjectBindingsForLocalScripts(const Context&);
|
||
|
void initObjectBindingsForGlobalScripts(const Context&);
|
||
|
}
|
||
|
|
||
|
#endif // MWLUA_OBJECTBINDINGS_H
|