diff options
author | rtk0c <[email protected]> | 2022-06-09 21:23:15 -0700 |
---|---|---|
committer | rtk0c <[email protected]> | 2022-06-09 21:23:15 -0700 |
commit | c6b122f517fbde9a400ecb46c4fff44629f7677c (patch) | |
tree | 49da93ce34fdaf0fadc7007c46525078aa9bff4d /source/30-game/Ires.hpp | |
parent | 8510a85f79f706b93982b4e398b187b5f77081dd (diff) |
Changeset: 65 Add enum name prefix manipulation support to codegen
Diffstat (limited to 'source/30-game/Ires.hpp')
-rw-r--r-- | source/30-game/Ires.hpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/source/30-game/Ires.hpp b/source/30-game/Ires.hpp index b6420f3..22018cd 100644 --- a/source/30-game/Ires.hpp +++ b/source/30-game/Ires.hpp @@ -21,6 +21,10 @@ class IresLoadingContext; namespace Tags { enum class IresObjectKind { + // clang-format off + BRUSSEL_ENUM(ToString, FromString, RemovePrefix KD_, AddPrefix Ires, ExcludeHeuristics) + // clang-format on + KD_Texture, KD_Shader, KD_Material, @@ -28,7 +32,6 @@ enum class IresObjectKind { KD_Spritesheet, KD_COUNT, }; -BRUSSEL_ENUM(IresObjectKind, ToString FromString ExcludeHeuristics); } // namespace Tags class IresObject : public RefCounted { |