OSDN Git Service

[Style] clang-format をすべてのヘッダファイルにも適用する
[hengbandforosx/hengbandosx.git] / src / object-enchant / dragon-breaths-table.h
1 #pragma once
2
3 #include "effect/attribute-types.h"
4 #include "object-enchant/tr-types.h"
5 #include "system/angband.h"
6
7 struct dragonbreath_type {
8     tr_type flag;
9     AttributeType type;
10     concptr name;
11 };
12
13 extern const dragonbreath_type dragonbreath_info[];