Correctly name enum type

Previously the example defined a "MyEnum" enum, but used a "SpellElements" type export. I've changed so it now defines a "SpellElements" enum.
This commit is contained in:
Anaclecio Brederodes
2024-10-29 18:36:16 -03:00
committed by GitHub
parent f512e1e9f5
commit e01f00f069

View File

@@ -363,7 +363,7 @@ combine multiple flags using logical OR (``|``) are also possible.
.. code-block:: csharp
[Flags]
public enum MyEnum
public enum SpellElements
{
Fire = 1 << 1,
Water = 1 << 2,