mirror of
https://github.com/OpenMW/openmw.git
synced 2025-12-08 12:34:33 +00:00
15 lines
288 B
C++
15 lines
288 B
C++
#ifndef MWLUA_COREBINDINGS_H
|
|
#define MWLUA_COREBINDINGS_H
|
|
|
|
#include <sol/forward.hpp>
|
|
|
|
namespace MWLua
|
|
{
|
|
struct Context;
|
|
|
|
void addCoreTimeBindings(sol::table& api, const Context& context);
|
|
|
|
sol::table initCorePackage(const Context& context);
|
|
}
|
|
|
|
#endif // MWLUA_COREBINDINGS_H
|