aboutsummaryrefslogtreecommitdiff
path: root/src/lua/modules/graphics/je_lua_page.h
blob: c9775e9857d0b5397dbc9af5ad881bcc81b267d8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef __JE_LUA_PAGE_H__
#define __JE_LUA_PAGE_H__

namespace JinEngine
{
    namespace Lua
    {

        enum class PageDependency
        {
            DEP_TTF = 1, 
            DEP_TEXTURE_FONT = 2,
        };

    }
}

#endif