mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-01 03:21:41 +00:00
13 lines
275 B
C++
13 lines
275 B
C++
|
#ifndef MWLUA_ANIMATIONBINDINGS_H
|
||
|
#define MWLUA_ANIMATIONBINDINGS_H
|
||
|
|
||
|
#include <sol/forward.hpp>
|
||
|
|
||
|
namespace MWLua
|
||
|
{
|
||
|
sol::table initAnimationPackage(const Context& context);
|
||
|
sol::table initCoreVfxBindings(const Context& context);
|
||
|
}
|
||
|
|
||
|
#endif // MWLUA_ANIMATIONBINDINGS_H
|