Lua/Enums: Fix missing namespace
Former-commit-id: 08a82b09341df944b7f9b0aa102ce089f3cc4a95
This commit is contained in:
parent
ee2257810c
commit
35b0d293fd
|
|
@ -7,6 +7,16 @@
|
||||||
#ifndef NAZARA_ENUMS_LUA_HPP
|
#ifndef NAZARA_ENUMS_LUA_HPP
|
||||||
#define NAZARA_ENUMS_LUA_HPP
|
#define NAZARA_ENUMS_LUA_HPP
|
||||||
|
|
||||||
|
namespace Nz
|
||||||
|
{
|
||||||
|
enum LuaBindMode
|
||||||
|
{
|
||||||
|
LuaBindMode_Table,
|
||||||
|
LuaBindMode_Userdata,
|
||||||
|
|
||||||
|
LuaBindMode_Max = LuaBindMode_Userdata
|
||||||
|
};
|
||||||
|
|
||||||
enum LuaComparison
|
enum LuaComparison
|
||||||
{
|
{
|
||||||
LuaComparison_Equality,
|
LuaComparison_Equality,
|
||||||
|
|
@ -51,5 +61,6 @@ enum LuaType
|
||||||
|
|
||||||
LuaType_Max = LuaType_Userdata
|
LuaType_Max = LuaType_Userdata
|
||||||
};
|
};
|
||||||
|
}
|
||||||
|
|
||||||
#endif // NAZARA_ENUMS_LUA_HPP
|
#endif // NAZARA_ENUMS_LUA_HPP
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue