blob: d2d9f22dfc8af77500cfcec4a317592f6c2bb89f (
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 PageDependency
{
DEP_TTF = 1,
DEP_TEXTURE_FONT = 2,
};
}
}
#endif
|