OSDN Git Service

refactor compare_weapon_aux
[hengband/hengband.git] / src / angband.h
1 /* File: angband.h */
2
3 /* Main "Angband" header file */
4
5 #ifndef INCLUDED_ANGBAND_H
6 #define INCLUDED_ANGBAND_H
7
8 /*
9  * Copyright (c) 1989 James E. Wilson
10  *
11  * This software may be copied and distributed for educational, research, and
12  * not for profit purposes provided that this copyright and statement are
13  * included in all such copies.
14  */
15
16
17
18 /*
19  * First, include the low-level includes.  Be sure to edit "h-config.h"
20  * to reflect any hardware, operating system, or compiler nuances.
21  */
22 #include "h-basic.h"
23
24
25 /*
26  * Then, include the header files for the low-level code
27  */
28 #include "z-util.h"
29 #include "z-virt.h"
30 #include "z-form.h"
31 #include "z-rand.h"
32 #include "z-term.h"
33
34
35 /*
36  * Include the "Angband" configuration header
37  */
38 #include "z-config.h"
39
40
41 /*
42  * Now, include the define's, the type's, and the extern's
43  */
44 #include "defines.h"
45 #include "types.h"
46 #include "externs.h"
47
48 /***** Some copyright messages follow below *****/
49
50 /*
51  * Note that these copyright messages apply to an ancient version
52  * of Angband, as in, from pre-2.4.frog-knows days, and thus the
53  * reference to "5.0" is rather misleading...
54  */
55
56 /*
57  * UNIX ANGBAND Version 5.0
58  */
59
60
61 /* Original copyright message follows. */
62
63 /*
64  * ANGBAND Version 4.8  COPYRIGHT (c) Robert Alan Koeneke
65  *
66  *       I lovingly dedicate this game to hackers and adventurers
67  *       everywhere...
68  *
69  *       Designer and Programmer:
70  *              Robert Alan Koeneke
71  *              University of Oklahoma
72  *
73  *       Assistant Programmer:
74  *              Jimmey Wayne Todd
75  *              University of Oklahoma
76  *
77  *       Assistant Programmer:
78  *              Gary D. McAdoo
79  *              University of Oklahoma
80  *
81  *       UNIX Port:
82  *              James E. Wilson
83  *              UC Berkeley
84  *              wilson@ernie.Berkeley.EDU
85  *              ucbvax!ucbernie!wilson
86  */
87
88
89 /*
90  *       ANGBAND may be copied and modified freely as long as the above
91  *       credits are retained.  No one who-so-ever may sell or market
92  *       this software in any form without the expressed written consent
93  *       of the author Robert Alan Koeneke.
94  */
95
96
97 #endif
98
99
100