12 lines
209 B
C
12 lines
209 B
C
#pragma once
|
|
|
|
#include "lua.h"
|
|
|
|
// Check if a flag exists on the variable stack.
|
|
int var_checkflag(char* str);
|
|
void var_cleanup(void);
|
|
|
|
// Load the libraries for a lua state.
|
|
int misn_loadLibs(lua_State* L);
|
|
|