OSDN Git Service

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