OSDN Git Service

[Refactor] #37353 ゲームバランス定数を gamevalue.h へ整理。 / Move constant value in game to gameva...
[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
50 /***** Some copyright messages follow below *****/
51
52 /*
53  * Note that these copyright messages apply to an ancient version
54  * of Angband, as in, from pre-2.4.frog-knows days, and thus the
55  * reference to "5.0" is rather misleading...
56  */
57
58 /*
59  * UNIX ANGBAND Version 5.0
60  */
61
62
63 /* Original copyright message follows. */
64
65 /*
66  * ANGBAND Version 4.8  COPYRIGHT (c) Robert Alan Koeneke
67  *
68  *       I lovingly dedicate this game to hackers and adventurers
69  *       everywhere...
70  *
71  *       Designer and Programmer:
72  *              Robert Alan Koeneke
73  *              University of Oklahoma
74  *
75  *       Assistant Programmer:
76  *              Jimmey Wayne Todd
77  *              University of Oklahoma
78  *
79  *       Assistant Programmer:
80  *              Gary D. McAdoo
81  *              University of Oklahoma
82  *
83  *       UNIX Port:
84  *              James E. Wilson
85  *              UC Berkeley
86  *              wilson@ernie.Berkeley.EDU
87  *              ucbvax!ucbernie!wilson
88  */
89
90
91 /*
92  *       ANGBAND may be copied and modified freely as long as the above
93  *       credits are retained.  No one who-so-ever may sell or market
94  *       this software in any form without the expressed written consent
95  *       of the author Robert Alan Koeneke.
96  */
97
98
99 #endif
100
101
102