mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-01-20 04:34:48 +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
|