1 /*
2  * Copyright (C) 2004 Ivo Danihelka (ivo@danihelka.net)
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation; either version 2 of the License, or
7  * (at your option) any later version.
8  */
9 #include "Name.h"
10 
11 
12 //NOTE: timerAgent is before inputAgent. This gives player
13 // the fastest rection on his input (there is no delay between input,
14 // game and video update).
15 const char *Name::APP_NAME = "App";
16 const char *Name::MESSAGER_NAME = "10messager";
17 const char *Name::SCRIPT_NAME = "15script";
18 const char *Name::OPTION_NAME = "20option";
19 
20 const char *Name::VIDEO_NAME = "30video";
21 const char *Name::SOUND_NAME = "40sound";
22 const char *Name::TIMER_NAME = "50timer";
23 
24 const char *Name::INPUT_NAME = "60input";
25 const char *Name::SUBTITLE_NAME = "70subtitle";
26 
27 const char *Name::GAME_NAME = "80game";
28 
29