blob: 1b32ec3174328d3c6f58d458f34cea99811cd394 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
#ifndef __JE_LUA_ANIMATION_H__
#define __JE_LUA_ANIMATION_H__
namespace JinEngine
{
namespace Lua
{
extern const char* Jin_Lua_Animation;
///
///
///
enum class AnimationDependency
{
DEP_SPRITES = 1 ///< Index from 1
};
void luaopen_Animation(lua_State* L);
}
}
#endif
|