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