mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-04-09 21:44:54 +00:00
17 lines
383 B
C++
17 lines
383 B
C++
#ifndef MWLUA_STATS_H
|
|
#define MWLUA_STATS_H
|
|
|
|
#include <sol/forward.hpp>
|
|
|
|
namespace MWLua
|
|
{
|
|
struct Context;
|
|
|
|
std::string_view getSpecialization(int32_t val);
|
|
void addActorStatsBindings(sol::table& actor, const Context& context);
|
|
void addNpcStatsBindings(sol::table& npc, const Context& context);
|
|
sol::table initCoreStatsBindings(const Context& context);
|
|
}
|
|
|
|
#endif
|