mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-01-22 05:34:46 +00:00
14 lines
190 B
C
14 lines
190 B
C
|
|
#ifndef SDL_INPUT_H
|
||
|
|
#define SDL_INPUT_H
|
||
|
|
|
||
|
|
#include "platform/types.h"
|
||
|
|
|
||
|
|
namespace KeyMapSDL
|
||
|
|
{
|
||
|
|
U32 getTorqueScanCodeFromSDL(U32 sdl);
|
||
|
|
|
||
|
|
U32 getSDLScanCodeFromTorque(U32 torque);
|
||
|
|
}
|
||
|
|
|
||
|
|
#endif
|