/* Keys for Komi. Adjust at will (then recompile). For key-names see:
        http://sdldoc.csn.ul.ie/sdlkey.php
*/

// You can use any of these keys to go left...
int LeftKey1 = SDLK_LEFT;
int LeftKey2 = SDLK_KP4;
int LeftKey3 = SDLK_q;

// You can use any of these keys to go right...
int RightKey1 = SDLK_RIGHT;
int RightKey2 = SDLK_KP6;
int RightKey3 = SDLK_w;

// Extend the tongue...
int FireKey1 = SDLK_SPACE;
int FireKey2 = SDLK_RETURN;

// Utility functions...
int PauseKey = SDLK_p;
int ScreenshotKey = SDLK_F12;

int LevelSkip = SDLK_KP_PLUS;    // Only works if cheats enabled.
