PGE Engine
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Macros Pages
luafuncs_core_effect.h
1 #ifndef BINDING_CORE_GLOBALFUNCS_EFFECT_H
2 #define BINDING_CORE_GLOBALFUNCS_EFFECT_H
3 
4 #include <luabind/luabind.hpp>
5 #include <lua_inclues/lua.hpp>
6 
7 #include <script/lua_global.h>
8 
10 {
11 public:
12 
13  static void runStaticEffect(long effectID, float startX, float startY, lua_State *L);
14  static void runStaticEffectCentered(long effectID, float startX, float startY, lua_State *L);
15 
16  static luabind::scope bindToLua();
17 };
18 
19 #endif // BINDING_CORE_GLOBALFUNCS_EFFECT_H
Definition: luafuncs_core_effect.h:9