From b17d12c86f3e7414673d653396d2dce2e862b1e3 Mon Sep 17 00:00:00 2001 From: "cedeel@gmail.com" Date: Sun, 3 Jun 2012 23:35:17 +0000 Subject: Updated zlib, added chat formatting, fixed upside down stairs and slabs, fixed makefiles, hopefully updated vc project files git-svn-id: http://mc-server.googlecode.com/svn/trunk@546 0a769ca7-a7f5-676a-18bf-c427514a06d6 --- source/cStep.h | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 source/cStep.h (limited to 'source/cStep.h') 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 -- cgit v1.2.3