OSDN Git Service

[feature] ソースファイルをC++に対応
[hengbandforosx/hengbandosx.git] / src / object-enchant / special-object-flags.h
index 2f732f3..33a54e8 100644 (file)
@@ -3,7 +3,7 @@
 /*
  * Special Object Flags
  */
-typedef enum sof_type {
+enum sof_type {
     IDENT_SENSE = 0x01, /* Item has been "sensed" */
     IDENT_FIXED = 0x02, /* Item has been "haggled" */
     IDENT_EMPTY = 0x04, /* Item charges are known */
@@ -11,4 +11,4 @@ typedef enum sof_type {
     IDENT_STORE = 0x10, /* Item is storebought !!!! */
     IDENT_FULL_KNOWN = 0x20, /* Item information is known */
     IDENT_BROKEN = 0x80, /* Item is permanently worthless */
-} sof_type;
+};