summaryrefslogtreecommitdiffstats
path: root/source/Vine.h
diff options
context:
space:
mode:
Diffstat (limited to 'source/Vine.h')
-rw-r--r--source/Vine.h23
1 files changed, 23 insertions, 0 deletions
diff --git a/source/Vine.h b/source/Vine.h
new file mode 100644
index 000000000..d4bc99c1a
--- /dev/null
+++ b/source/Vine.h
@@ -0,0 +1,23 @@
+#pragma once
+
+class cVine //tolua_export
+{ //tolua_export
+public:
+
+ static char DirectionToMetaData( char a_Direction ) //tolua_export
+ { //tolua_export
+ switch (a_Direction)
+ {
+ case 0x2:
+ return 0x1;
+ case 0x3:
+ return 0x4;
+ case 0x4:
+ return 0x8;
+ case 0x5:
+ return 0x2;
+ default:
+ return 0xf;
+ };
+ } //tolua_export
+}; //tolua_export \ No newline at end of file