/* XBlockOut a 3D Tetris Copyright (C) 1992,1993,1994,2003 Thierry EXCOFFIER This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 1, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. Contact: Thierry.EXCOFFIER@liris.univ-lyon1.fr */ #ifndef KEY_DOWN_LEFT /* Place of the key in the keytable */ #define KEY_DOWN_LEFT 0 #define KEY_LEFT 1 #define KEY_UP_LEFT 2 #define KEY_UP 3 #define KEY_UP_RIGHT 4 #define KEY_RIGHT 5 #define KEY_DOWN_RIGHT 6 #define KEY_DOWN 7 #define KEY_ROT_X_POS 8 #define KEY_ROT_X_NEG 9 #define KEY_ROT_Y_POS 10 #define KEY_ROT_Y_NEG 11 #define KEY_ROT_Z_POS 12 #define KEY_ROT_Z_NEG 13 #define KEY_DROP 14 #define KEY_CANCEL 15 #define KEY_PAUSE 16 #define KEY_QUIT 17 #define KEY_DROP_1 18 #define KEY_LAST 19 /* The last key + 1 */ #endif