OSDN Git Service

Merge remote-tracking branch 'remotes/origin/For2.2.X-Add-Monster' into For2.2.2...
[hengband/hengband.git] / src / angband.h
1 #pragma once
2 /*!
3  * @file angband.h
4  * @brief Angband(変愚蛮怒)メインヘッダファイル
5  * Main "Angband" header file
6  * @date 2014/08/08
7  * @author
8  * Copyright (c) 1989 James E. Wilson
9  * @details *
10  * This software may be copied and distributed for educational, research, and
11  * not for profit purposes provided that this copyright and statement are
12  * included in all such copies.
13  * This file has been modified for use with "Angband 2.8.2"
14  */
15
16
17 #ifndef INCLUDED_ANGBAND_H
18 #define INCLUDED_ANGBAND_H
19
20 /*
21  * First, include the low-level includes.  Be sure to edit "h-config.h"
22  * to reflect any hardware, operating system, or compiler nuances.
23  */
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 "gamevalue.h"
40 #include "cmd-gameoption.h"
41
42 #include "monster.h"
43 #include "monsterrace.h"
44 #include "object.h"
45 #include "player-status.h"
46
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