1
0
Fork 0

Removed exporting of a torch function

This commit is contained in:
Tiger Wang 2013-12-06 19:23:27 +00:00
parent 57b8b38511
commit 0376b847d7
1 changed files with 3 additions and 3 deletions

View File

@ -55,8 +55,8 @@ public:
}
static NIBBLETYPE DirectionToMetaData(char a_Direction) // tolua_export
{ // tolua_export
static NIBBLETYPE DirectionToMetaData(char a_Direction)
{
switch (a_Direction)
{
case BLOCK_FACE_BOTTOM: ASSERT(!"Shouldn't be getting this face"); return 0;
@ -72,7 +72,7 @@ public:
}
};
return 0x0;
} // tolua_export
}
static char MetaDataToDirection(NIBBLETYPE a_MetaData) // tolua_export