OSDN Git Service

[Refactor] #2617 struct artifact_type をclass ArtifactType にリネームした
[hengbandforosx/hengbandosx.git] / src / artifact / fixed-art-generator.h
index 7e60226..56c2750 100644 (file)
@@ -7,10 +7,10 @@
 #include "system/angband.h"
 
 enum class FixedArtifactId : short;
-struct artifact_type;
+class ArtifactType;
 class ObjectType;
 class PlayerType;
 bool create_named_art(PlayerType *player_ptr, FixedArtifactId a_idx, POSITION y, POSITION x);
 bool make_artifact(PlayerType *player_ptr, ObjectType *o_ptr);
-artifact_type *apply_artifact(PlayerType *player_ptr, ObjectType *o_ptr);
+ArtifactType *apply_artifact(PlayerType *player_ptr, ObjectType *o_ptr);
 bool make_artifact_special(PlayerType *player_ptr, ObjectType *o_ptr);