mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-26 18:35:20 +00:00
13 lines
243 B
C++
13 lines
243 B
C++
|
#ifndef MWLUA_STATS_H
|
||
|
#define MWLUA_STATS_H
|
||
|
|
||
|
#include "context.hpp"
|
||
|
|
||
|
namespace MWLua
|
||
|
{
|
||
|
void addActorStatsBindings(sol::table& actor, const Context& context);
|
||
|
void addNpcStatsBindings(sol::table& npc, const Context& context);
|
||
|
}
|
||
|
|
||
|
#endif
|