OSDN Git Service

[Refactor] #2124 Changed struct object_type to class ObjectType
[hengbandforosx/hengbandosx.git] / src / autopick / autopick-entry.h
index b5b8a26..1340c50 100644 (file)
@@ -3,10 +3,10 @@
 #include "system/angband.h"
 
 typedef struct autopick_type autopick_type;
-struct object_type;
+class ObjectType;
 class PlayerType;
 bool autopick_new_entry(autopick_type *entry, concptr str, bool allow_default);
-void autopick_entry_from_object(PlayerType *player_ptr, autopick_type *entry, object_type *o_ptr);
+void autopick_entry_from_object(PlayerType *player_ptr, autopick_type *entry, ObjectType *o_ptr);
 concptr autopick_line_from_entry(autopick_type *entry);
 concptr autopick_line_from_entry_kill(autopick_type *entry);
 bool entry_from_choosed_object(PlayerType *player_ptr, autopick_type *entry);