summaryrefslogtreecommitdiff
path: root/src/plugin-luapsx.cc
diff options
context:
space:
mode:
authorNicolas Noble <nnoble@blizzard.com>2009-03-16 14:05:47 -0700
committerNicolas Noble <nnoble@blizzard.com>2009-03-16 14:05:47 -0700
commit76aa3260f43ef0d74bbfa04982b620961af61eab (patch)
treeaccd626d62b73398c05cda04f407d351d50d72a8 /src/plugin-luapsx.cc
Initial commit.
Diffstat (limited to 'src/plugin-luapsx.cc')
-rw-r--r--src/plugin-luapsx.cc13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/plugin-luapsx.cc b/src/plugin-luapsx.cc
new file mode 100644
index 0000000..e1f820c
--- /dev/null
+++ b/src/plugin-luapsx.cc
@@ -0,0 +1,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);
+}
+
+}