summaryrefslogtreecommitdiffstats
path: root/source/cStep.h
blob: 122a09191e7c918de94463a93eeee1eb75d7eecc (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
    int result = 0x0;
    if( a_Direction == 0)
    {
      result = 0x8;
    }
    return result;
	}														//tolua_export
};															//tolua_export