15 lines
185 B
C++
15 lines
185 B
C++
|
|
#ifndef AG_H
|
|
#define AG_H
|
|
|
|
#include <lua.hpp>
|
|
|
|
namespace ag
|
|
{
|
|
void register_functions(lua_State * L);
|
|
int ag_print(lua_State * L);
|
|
int ag_println(lua_State * L);
|
|
}
|
|
|
|
#endif
|