OSDN Git Service

9a487f460615d25efcf6b3b39a203d749ad14272
[hengband/hengband.git] / src / system / 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 "term/z-util.h"
30 #include "term/z-virt.h"
31 #include "term/z-form.h"
32 #include "term/z-rand.h"
33 #include "term/z-term.h"
34 #include "locale/language-switcher.h"
35
36 /*
37  * Include the "Angband" configuration header
38  */
39 #include "system/gamevalue.h"
40 #include "player/player-status.h"
41
42
43 /***** Some copyright messages follow below *****/
44
45 /*
46  * Note that these copyright messages apply to an ancient version
47  * of Angband, as in, from pre-2.4.frog-knows days, and thus the
48  * reference to "5.0" is rather misleading...
49  */
50
51 /*
52  * UNIX ANGBAND Version 5.0
53  */
54
55
56 /* Original copyright message follows. */
57
58 /*
59  * ANGBAND Version 4.8  COPYRIGHT (c) Robert Alan Koeneke
60  *
61  *       I lovingly dedicate this game to hackers and adventurers
62  *       everywhere...
63  *
64  *       Designer and Programmer:
65  *              Robert Alan Koeneke
66  *              University of Oklahoma
67  *
68  *       Assistant Programmer:
69  *              Jimmey Wayne Todd
70  *              University of Oklahoma
71  *
72  *       Assistant Programmer:
73  *              Gary D. McAdoo
74  *              University of Oklahoma
75  *
76  *       UNIX Port:
77  *              James E. Wilson
78  *              UC Berkeley
79  *              wilson@ernie.Berkeley.EDU
80  *              ucbvax!ucbernie!wilson
81  */
82
83
84 /*
85  *       ANGBAND may be copied and modified freely as long as the above
86  *       credits are retained.  No one who-so-ever may sell or market
87  *       this software in any form without the expressed written consent
88  *       of the author Robert Alan Koeneke.
89  */
90
91
92 #endif
93
94
95