diff options
author | cedeel@gmail.com <cedeel@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2012-06-16 00:40:51 +0200 |
---|---|---|
committer | cedeel@gmail.com <cedeel@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2012-06-16 00:40:51 +0200 |
commit | c4f785e0bea4104d9a0f3346478d856cd9903605 (patch) | |
tree | 42c570687d30b3f0c1ae0a78e6be2e1df9fad5b1 /source/cVine.h | |
parent | Rewritten ForEach using #define-s, new ones can be added as a simple one-liner (diff) | |
download | cuberite-c4f785e0bea4104d9a0f3346478d856cd9903605.tar cuberite-c4f785e0bea4104d9a0f3346478d856cd9903605.tar.gz cuberite-c4f785e0bea4104d9a0f3346478d856cd9903605.tar.bz2 cuberite-c4f785e0bea4104d9a0f3346478d856cd9903605.tar.lz cuberite-c4f785e0bea4104d9a0f3346478d856cd9903605.tar.xz cuberite-c4f785e0bea4104d9a0f3346478d856cd9903605.tar.zst cuberite-c4f785e0bea4104d9a0f3346478d856cd9903605.zip |
Diffstat (limited to '')
-rw-r--r-- | source/cVine.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/source/cVine.h b/source/cVine.h index 6d2a92d15..a99a98aca 100644 --- a/source/cVine.h +++ b/source/cVine.h @@ -1,11 +1,11 @@ #pragma once -class cVine //tolua_export -{ //tolua_export +class cVine //tolua_export +{ //tolua_export public: - static char DirectionToMetaData( char a_Direction ) - { + static char DirectionToMetaData( char a_Direction ) //tolua_export + { //tolua_export switch (a_Direction) { case 0x2: @@ -20,5 +20,5 @@ public: return 0xf; }; return 0xf; - } //tolua_export -}; //tolua_export
\ No newline at end of file + } //tolua_export +}; //tolua_export
\ No newline at end of file |