OSDN Git Service

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