summaryrefslogtreecommitdiff
path: root/plugins/MirLua/src/mlua_console.h
blob: 6e82a22dd0a33862b14ceb5fd85b12780881d25d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef _LUA_CONSOLE_H_
#define _LUA_CONSOLE_H_

class CMLuaConsole
{
private:
	lua_State *L;
	HANDLE hConsole;

public:
	CMLuaConsole(lua_State *L);
	~CMLuaConsole();
};

#endif //_LUA_CONSOLE_H_