00001 /* 00002 * Copyright (C) 2004 Ivo Danihelka (ivo@danihelka.net) 00003 * 00004 * This program is free software; you can redistribute it and/or modify 00005 * it under the terms of the GNU General Public License as published by 00006 * the Free Software Foundation; either version 2 of the License, or 00007 * (at your option) any later version. 00008 */ 00009 #include "Name.h" 00010 00011 00012 //NOTE: timerAgent is before inputAgent. This gives player 00013 // the fastest rection on his input (there is no delay between input, 00014 // game and video update). 00015 const char *Name::APP_NAME = "App"; 00016 const char *Name::MESSAGER_NAME = "10messager"; 00017 const char *Name::SCRIPT_NAME = "15script"; 00018 const char *Name::OPTION_NAME = "20option"; 00019 00020 const char *Name::VIDEO_NAME = "30video"; 00021 const char *Name::SOUND_NAME = "40sound"; 00022 const char *Name::TIMER_NAME = "50timer"; 00023 00024 const char *Name::INPUT_NAME = "60input"; 00025 const char *Name::SUBTITLE_NAME = "70subtitle"; 00026 00027 const char *Name::GAME_NAME = "80game"; 00028