blob: d2002aff9cf0278e15e80d0cbe3808af16261be8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#include <LuaHandle.h>
extern "C" {
void init_plugin(Lua * L) {
LuaInput::pushconstruct(L);
LuaOutput::pushconstruct(L);
LuaBuffer::pushconstruct(L);
LuaHandle::pushconstruct(L);
}
}
|