summaryrefslogtreecommitdiff
path: root/src/plugin-luapsx.cc
blob: e1f820c960713cf70591ef0ddea477963d9fda1c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include <BLua.h>
#include <luapsx.h>

extern "C" {

void init_plugin(Lua * L) {
    static bool done = false;
    if (done) return;
    done = true;
    Luapsx::pushstatics(L);
}

}