mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2024-12-29 12:20:41 +00:00
14 lines
215 B
C++
14 lines
215 B
C++
|
#ifndef MWLUA_INPUTBINDINGS_H
|
||
|
#define MWLUA_INPUTBINDINGS_H
|
||
|
|
||
|
#include <sol/forward.hpp>
|
||
|
|
||
|
#include "context.hpp"
|
||
|
|
||
|
namespace MWLua
|
||
|
{
|
||
|
sol::table initInputPackage(const Context&);
|
||
|
}
|
||
|
|
||
|
#endif // MWLUA_INPUTBINDINGS_H
|