mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2024-12-28 18:18:52 +00:00
15 lines
297 B
C++
15 lines
297 B
C++
#ifndef MWLUA_ANIMATIONBINDINGS_H
|
|
#define MWLUA_ANIMATIONBINDINGS_H
|
|
|
|
#include <sol/forward.hpp>
|
|
|
|
namespace MWLua
|
|
{
|
|
struct Context;
|
|
|
|
sol::table initAnimationPackage(const Context& context);
|
|
sol::table initWorldVfxBindings(const Context& context);
|
|
}
|
|
|
|
#endif // MWLUA_ANIMATIONBINDINGS_H
|