aboutsummaryrefslogtreecommitdiff
path: root/src/lua/modules/graphics/je_lua_sprite.h
blob: cbadc34c1f3aff37e52c5f267266b35b94c9e5a8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#ifndef __JE_LUA_SPRITE_H__
#define __JE_LUA_SPRITE_H__

namespace JinEngine
{
    namespace Lua
    {

        // Sprite dependency slots.
        enum class SpriteDependency
        {
            DEP_GRAPHIC = 1,
            DEP_SHADER = 2,
            DEP_SPRITESHEET = 3
        };

        extern const char* Jin_Lua_Sprite;

    }
}

#endif