1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-07 12:54:00 +00:00
OpenMW/apps/openmw/mwlua/stats.hpp

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
268 B
C++
Raw Normal View History

2022-03-25 20:03:13 +00:00
#ifndef MWLUA_STATS_H
#define MWLUA_STATS_H
2022-08-17 17:09:38 +00:00
#include <sol/forward.hpp>
2022-03-25 20:03:13 +00:00
namespace MWLua
{
2022-08-17 17:09:38 +00:00
struct Context;
2022-03-25 20:03:13 +00:00
void addActorStatsBindings(sol::table& actor, const Context& context);
void addNpcStatsBindings(sol::table& npc, const Context& context);
}
#endif