mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-26 09:35:28 +00:00
20 lines
511 B
C++
20 lines
511 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&);
|
|
|
|
// Returns `openmw.core`, but disables the functionality that shouldn't
|
|
// be availabe in menu scripts (to prevent cheating in mutiplayer via menu console).
|
|
sol::table initCorePackageForMenuScripts(const Context&);
|
|
}
|
|
|
|
#endif // MWLUA_COREBINDINGS_H
|