mirror of
https://github.com/OpenMW/openmw.git
synced 2025-12-13 22:13:06 +00:00
13 lines
220 B
C++
13 lines
220 B
C++
#ifndef MWLUA_ITEMDATA_H
|
|
#define MWLUA_ITEMDATA_H
|
|
|
|
#include <sol/forward.hpp>
|
|
|
|
namespace MWLua
|
|
{
|
|
struct Context;
|
|
|
|
void addItemDataBindings(sol::table& item, const Context& context);
|
|
|
|
}
|
|
#endif // MWLUA_ITEMDATA_H
|