OSDN Git Service

[Refactor] #38861 cptr を concptrに改名 / rename cptr to concptr.
[hengband/hengband.git] / src / history.h
1 \r
2 /*!\r
3 * 生い立ちメッセージテーブル / Forward declare\r
4 */\r
5 typedef struct hist_type hist_type;\r
6 \r
7 /*!\r
8 * 生い立ちメッセージテーブルの構造体定義 / Player background information\r
9 */\r
10 struct hist_type\r
11 {\r
12         concptr info;                       /*!> メッセージ本文 / Textual History */\r
13 \r
14         byte roll;                          /*!> 確率の重み / Frequency of this entry */\r
15         byte chart;                         /*!> 生い立ちメッセージの流れを示すチャートID / Chart index */\r
16         byte next;                          /*!> 次のチャートID */\r
17         byte bonus;                         /*!> メッセージに伴う社会的地位の変化量(50が基準値) / Social Class Bonus + 50 */\r
18 };\r
19 \r
20 struct hist_type;\r
21 extern hist_type bg[];\r