summaryrefslogtreecommitdiffstats
path: root/source/cStep.h
blob: 482bb9b7b3a35dcfa166fd1cea8df49856933f41 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#pragma once

class cStep												//tolua_export
{															//tolua_export
public:
	static char DirectionToMetaData( int a_Direction )		//tolua_export
	{														//tolua_export
    char result = 0x0;
    if( a_Direction == 0)
    {
      result = 0x8;
    }
    return result;
	}														//tolua_export
};															//tolua_export