HDB: Added several Lua global values

This commit is contained in:
Eugene Sandulenko 2019-06-27 00:27:23 +02:00
parent 8d4168ca58
commit 3f01af23cf

View File

@ -701,9 +701,14 @@ struct VarInit {
// For AI States, to be implemented
struct NumberInit {
int value;
char *luaName;
const char *luaName;
} luaGlobalValues[] = {
{NULL, NULL}
{ DIR_NONE, "DIR_NONE" },
{ DIR_DOWN, "DIR_DOWN" },
{ DIR_UP, "DIR_UP" },
{ DIR_LEFT, "DIR_LEFT" },
{ DIR_RIGHT, "DIR_RIGHT" },
{ NULL, NULL }
};
struct FuncInit {