2011-07-16 13:08:58 -06:00
|
|
|
#ifndef LUA_CONSOLE_H
|
|
|
|
#define LUA_CONSOLE_H
|
2011-12-31 04:48:42 -07:00
|
|
|
#include <Console.h>
|
2011-07-16 13:08:58 -06:00
|
|
|
#include "luamain.h"
|
|
|
|
|
|
|
|
namespace lua
|
|
|
|
{
|
|
|
|
|
2012-03-11 06:33:08 -06:00
|
|
|
void RegisterConsole(lua::state &st);
|
|
|
|
void SetConsole(lua::state &st,DFHack::color_ostream& stream);
|
2011-07-16 13:08:58 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|