OSDN Git Service

Merge pull request #3532 from sikabane-works/release/3.0.0.87-alpha
[hengbandforosx/hengbandosx.git] / src / system / system-variables.cpp
1 /*!
2  * @brief グローバル変数の残骸
3  * @date 2013/12/31
4  * @todo 呼び出し関係を良く読んで消す方針で進めたい.
5  */
6
7 #include "system/system-variables.h"
8
9 /*!
10  * @todo どこからも呼ばれていない。main関数辺りに移設するか、そもそもコメントでいいと思われる
11  * コピーライト情報 / Link a copyright message into the executable
12  */
13 /*
14 const concptr copyright[5] =
15 {
16         "Copyright (c) 1989 James E. Wilson, Robert A. Keoneke",
17         "",
18         "This software may be copied and distributed for educational, research,",
19         "and not for profit purposes provided that this copyright and statement",
20         "are included in all such copies."
21 };
22 */
23
24 concptr ANGBAND_SYS = "xxx";
25 concptr ANGBAND_KEYBOARD = _("JAPAN", "0");
26 concptr ANGBAND_GRAF = "ascii";
27 init_flags_type init_flags; //!< @todo このグローバル変数何とかしたい
28
29 /*!
30  * Function hook to restrict "get_obj_index_prep()" function
31  */
32 bool (*get_obj_index_hook)(short bi_id);
33
34 int coin_type;