mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-26 09:35:28 +00:00
15 lines
303 B
C++
15 lines
303 B
C++
|
#ifndef MWLUA_MAGICBINDINGS_H
|
||
|
#define MWLUA_MAGICBINDINGS_H
|
||
|
|
||
|
#include <sol/forward.hpp>
|
||
|
|
||
|
#include "context.hpp"
|
||
|
|
||
|
namespace MWLua
|
||
|
{
|
||
|
sol::table initCoreMagicBindings(const Context& context);
|
||
|
void addActorMagicBindings(sol::table& actor, const Context& context);
|
||
|
}
|
||
|
|
||
|
#endif // MWLUA_MAGICBINDINGS_H
|