OSDN Git Service

近く行なうキャラクター情報'C'の画面の変更に備えて、表示する各行の
[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 #ifdef USE_SCRIPT
49 #include "event.h"
50 #endif /* USE_SCRIPT */
51
52 /***** Some copyright messages follow below *****/
53
54 /*
55  * Note that these copyright messages apply to an ancient version
56  * of Angband, as in, from pre-2.4.frog-knows days, and thus the
57  * reference to "5.0" is rather misleading...
58  */
59
60 /*
61  * UNIX ANGBAND Version 5.0
62  */
63
64
65 /* Original copyright message follows. */
66
67 /*
68  * ANGBAND Version 4.8  COPYRIGHT (c) Robert Alan Koeneke
69  *
70  *       I lovingly dedicate this game to hackers and adventurers
71  *       everywhere...
72  *
73  *       Designer and Programmer:
74  *              Robert Alan Koeneke
75  *              University of Oklahoma
76  *
77  *       Assistant Programmer:
78  *              Jimmey Wayne Todd
79  *              University of Oklahoma
80  *
81  *       Assistant Programmer:
82  *              Gary D. McAdoo
83  *              University of Oklahoma
84  *
85  *       UNIX Port:
86  *              James E. Wilson
87  *              UC Berkeley
88  *              wilson@ernie.Berkeley.EDU
89  *              ucbvax!ucbernie!wilson
90  */
91
92
93 /*
94  *       ANGBAND may be copied and modified freely as long as the above
95  *       credits are retained.  No one who-so-ever may sell or market
96  *       this software in any form without the expressed written consent
97  *       of the author Robert Alan Koeneke.
98  */
99
100
101 #endif
102
103
104