OSDN Git Service

[Refactor] #3756 activation_type の実効的に使われていない入れ子構造体を廃止した
[hengbandforosx/hengbandosx.git] / src / object-enchant / activation-info-table.h
index 685dd12..0a3af8e 100644 (file)
@@ -9,10 +9,8 @@ struct activation_type {
     RandomArtActType index;
     int level;
     int value;
-    struct {
-        int constant;
-        int dice;
-    } timeout;
+    int constant; // 発動間隔の最低ターン数
+    int dice; // 発動間隔の追加ターン数
     std::string desc;
 };