mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-08 09:37:53 +00:00
16 lines
283 B
C++
16 lines
283 B
C++
|
#ifndef MWLUA_COREBINDINGS_H
|
||
|
#define MWLUA_COREBINDINGS_H
|
||
|
|
||
|
#include <sol/forward.hpp>
|
||
|
|
||
|
#include "context.hpp"
|
||
|
|
||
|
namespace MWLua
|
||
|
{
|
||
|
void addCoreTimeBindings(sol::table& api, const Context& context);
|
||
|
|
||
|
sol::table initCorePackage(const Context&);
|
||
|
}
|
||
|
|
||
|
#endif // MWLUA_COREBINDINGS_H
|