mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2024-12-28 18:18:52 +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
|