naev 0.12.5
nlua_cli.c
Go to the documentation of this file.
1/*
2 * See Licensing and Copyright notice in naev.h
3 */
10#include <lauxlib.h>
12
13#include "nlua_cli.h"
14
15/* CLI */
16static const luaL_Reg cli_methods[] = { { 0, 0 } };
17
24int nlua_loadCLI( nlua_env env )
25{
26 nlua_register( env, "cli", cli_methods, 0 );
27 return 0;
28}
static const luaL_Reg cli_methods[]
Definition console.c:76
int nlua_loadCLI(nlua_env env)
Loads the CLI Lua library.
Definition nlua_cli.c:24