blob: 3621329c0c54de1d784da2f842276f005013af3b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#ifndef __JIN_LUA_GRAPHICS_COLOR_H
#define __JIN_LUA_GRAPHICS_COLOR_H
#include "libjin/jin.h"
#include "../luaopen_types.h"
namespace jin
{
namespace lua
{
namespace graphics
{
typedef jin::graphics::color color;
} // graphics
} // lua
} // jin
#endif
|