00001 /* This Spaceshooter is an small space adventure game 00002 * Copyright (C) 2006,2007 Steffen Nörtershäuser 00003 * Copyright (C) 2007,2008 Christoph Egger 00004 * 00005 * This program is free software: you can redistribute it and/or modify 00006 * it under the terms of the GNU General Public License as published by 00007 * the Free Software Foundation, either version 3 of the License, or 00008 * (at your option) any later version. 00009 * 00010 * This program is distributed in the hope that it will be useful, 00011 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00012 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00013 * GNU General Public License for more details. 00014 * 00015 * You should have received a copy of the GNU General Public License 00016 * along with this program. If not, see <http://www.gnu.org/licenses/>. 00017 */ 00018 00020 //Globals.H - Globale Definitionenn oder Variablen 00021 //Steffen Nörtershäuser 00023 00024 #ifndef GLOBALS_H 00025 #define GLOBALS_H 00026 00027 static const unsigned int SCREEN_X_SIZE = 1024; 00028 static const unsigned int SCREEN_Y_SIZE = 768; 00029 00030 static const unsigned int HUD_SIZE_X = 150; 00031 00032 //#define BUILD_CONSOLE 00033 #define NO_DEBUG 00034 00035 struct Vertex 00036 { 00037 float x, y, z; //Die Position des Vertex 00038 float nx, ny, nz; //Die Normale 00039 unsigned int color; 00040 float tu, tv; 00041 }; 00042 00043 #endif 00044