PlatformSDL implementation.

This commit is contained in:
LuisAntonRebollo 2015-01-16 20:37:16 +01:00
parent 21d58bb191
commit aa35157eef
33 changed files with 3971 additions and 151 deletions

View file

@ -0,0 +1,13 @@
#ifndef SDL_INPUT_H
#define SDL_INPUT_H
#include "platform/types.h"
namespace KeyMapSDL
{
U32 getTorqueScanCodeFromSDL(U32 sdl);
U32 getSDLScanCodeFromTorque(U32 torque);
}
#endif