1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-26 18:35:20 +00:00
OpenMW/apps/openmw/mwlua/stats.hpp

13 lines
243 B
C++
Raw Normal View History

2022-03-25 20:03:13 +00:00
#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