summaryrefslogtreecommitdiffstats
path: root/source/Vine.h
blob: d4bc99c1a997a28ace3c6d7eb950d4284257ad53 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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