mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-06 00:55:50 +00:00
15 lines
268 B
C++
15 lines
268 B
C++
#ifndef MWLUA_STATS_H
|
|
#define MWLUA_STATS_H
|
|
|
|
#include <sol/forward.hpp>
|
|
|
|
namespace MWLua
|
|
{
|
|
struct Context;
|
|
|
|
void addActorStatsBindings(sol::table& actor, const Context& context);
|
|
void addNpcStatsBindings(sol::table& npc, const Context& context);
|
|
}
|
|
|
|
#endif
|