blob: 4110bc4ab79ab8986598749dc5d5e5f9d2ad5936 (
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 // __JIN_LUA_GRAPHICS_COLOR_H
|