OSDN Git Service

[Add] @return を不要に書き込んだことによる警告をひとまず置換で修正.
[hengbandforosx/hengbandosx.git] / src / artifact / fixed-art-generator.h
1 #pragma once
2 /*!
3  * @file fixed-art-generator.h
4  * @brief 固定アーティファクトの生成処理ヘッダ
5  */
6
7 #include "system/angband.h"
8
9 typedef struct artifact_type artifact_type;
10 typedef struct object_type object_type;
11 typedef struct player_type player_type;
12 bool create_named_art(player_type *player_ptr, ARTIFACT_IDX a_idx, POSITION y, POSITION x);
13 bool make_artifact(player_type *player_ptr, object_type *o_ptr);
14 artifact_type *apply_artifact(player_type *player_ptr, object_type *o_ptr);
15 bool make_artifact_special(player_type *player_ptr, object_type *o_ptr);