diff options
Diffstat (limited to 'src/lua/modules/graphics/je_lua_particle_system.h')
-rw-r--r-- | src/lua/modules/graphics/je_lua_particle_system.h | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/src/lua/modules/graphics/je_lua_particle_system.h b/src/lua/modules/graphics/je_lua_particle_system.h index e69de29..b75b569 100644 --- a/src/lua/modules/graphics/je_lua_particle_system.h +++ b/src/lua/modules/graphics/je_lua_particle_system.h @@ -0,0 +1,21 @@ +#ifndef __JE_LUA_PARTICLESYSTEM_H__ +#define __JE_LUA_PARTICLESYSTEM_H__ + +namespace JinEngine +{ + namespace Lua + { + + enum class ParticleSystemDependency + { + DEP_SPRITES = 1, + }; + + extern const char* Jin_Lua_ParticleSystem; + + void luaopen_ParticleSystem(lua_State* L); + + } +} + +#endif
\ No newline at end of file |