games: Massive style(9) cleanup commit. Reduces differences to NetBSD.
[games.git] / games / hunt / huntd / conf.h
1 /*-
2  * David Leonard <d@openbsd.org>, 1999.  Public domain.
3  *
4  * $OpenBSD: conf.h,v 1.5 2003/06/17 00:36:40 pjanzen Exp $
5  * $DragonFly: src/games/hunt/huntd/conf.h,v 1.1 2008/09/02 21:50:21 dillon Exp $
6  */
7
8 /* Configuration option variables for the server: */
9
10 extern int conf_random;
11 extern int conf_reflect;
12 extern int conf_monitor;
13 extern int conf_ooze;
14 extern int conf_fly;
15 extern int conf_volcano;
16 extern int conf_drone;
17 extern int conf_boots;
18 extern int conf_scan;
19 extern int conf_cloak;
20 extern int conf_logerr;
21 extern int conf_syslog;
22
23 extern int conf_scoredecay;
24 extern int conf_maxremove;
25 extern int conf_linger;
26
27 extern int conf_flytime;
28 extern int conf_flystep;
29 extern int conf_volcano_max;
30 extern int conf_ptrip_face;
31 extern int conf_ptrip_back;
32 extern int conf_ptrip_side;
33 extern int conf_prandom;
34 extern int conf_preflect;
35 extern int conf_pshot_coll;
36 extern int conf_pgren_coll;
37 extern int conf_pgren_catch;
38 extern int conf_pmiss;
39 extern int conf_pdroneabsorb;
40 extern int conf_fall_frac;
41
42 extern int conf_bulspd;
43 extern int conf_ishots;
44 extern int conf_nshots;
45 extern int conf_maxncshot;
46 extern int conf_maxdam;
47 extern int conf_mindam;
48 extern int conf_stabdam;
49 extern int conf_killgain;
50 extern int conf_slimefactor;
51 extern int conf_slimespeed;
52 extern int conf_lavaspeed;
53 extern int conf_cloaklen;
54 extern int conf_scanlen;
55 extern int conf_mindshot;
56 extern int conf_simstep;
57
58 void config(void);
59 void config_arg(char *);