From: Deskull Date: Sun, 5 Oct 2014 13:09:15 +0000 (+0900) Subject: 闘技場モンスターのエントリー構造体に Doxygen コメントを追加。 / Add Doxygen comments to the structure of arena... X-Git-Tag: v2.2.0~104 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=04aa687c904878f42745fd7000e5c69e7e138221;p=hengbandforosx%2Fhengbandosx.git 闘技場モンスターのエントリー構造体に Doxygen コメントを追加。 / Add Doxygen comments to the structure of arena entry information. --- diff --git a/src/types.h b/src/types.h index 060293e18..a8646e27b 100644 --- a/src/types.h +++ b/src/types.h @@ -1675,14 +1675,15 @@ typedef struct } cave_template_type; -/* - * A structure type for arena entry +/*! + * @struct arena_type + * @brief 闘技場のモンスターエントリー構造体 / A structure type for arena entry */ typedef struct { - s16b r_idx; /* Monster (0 means victory prizing) */ - byte tval; /* tval of prize (0 means no prize) */ - byte sval; /* sval of prize */ + s16b r_idx; /*!< 闘技場のモンスター種族ID(0ならば表彰式) / Monster (0 means victory prizing) */ + byte tval; /*!< モンスター打倒後に得られるアイテムの大カテゴリID / tval of prize (0 means no prize) */ + byte sval; /*!< モンスター打倒後に得られるアイテムの小カテゴリID / sval of prize */ } arena_type;