naev 0.11.5
nlua_cli.c
Go to the documentation of this file.
1/*
2 * See Licensing and Copyright notice in naev.h
3 */
4
12#include <lauxlib.h>
13
14#include "naev.h"
17#include "nlua_cli.h"
18
19#include "log.h"
20#include "mission.h"
21#include "nluadef.h"
22
23
24/* CLI */
25static const luaL_Reg cli_methods[] = {
26 {0,0}
27};
36int nlua_loadCLI( nlua_env env )
37{
38 nlua_register(env, "cli", cli_methods, 0);
39 return 0;
40}
Header file with generic functions and naev-specifics.
int nlua_loadCLI(nlua_env env)
Loads the CLI Lua library.
Definition nlua_cli.c:36
static const luaL_Reg cli_methods[]
Definition nlua_cli.c:25