diff options
Diffstat (limited to 'source/cStep.h')
-rw-r--r-- | source/cStep.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/source/cStep.h b/source/cStep.h new file mode 100644 index 000000000..122a09191 --- /dev/null +++ b/source/cStep.h @@ -0,0 +1,15 @@ +#pragma once
+
+class cStep //tolua_export
+{ //tolua_export
+public:
+ static char DirectionToMetaData( int a_Direction ) //tolua_export
+ { //tolua_export
+ int result = 0x0;
+ if( a_Direction == 0)
+ {
+ result = 0x8;
+ }
+ return result;
+ } //tolua_export
+}; //tolua_export
|