This commit is contained in:
2026-07-09 21:33:33 +02:00
commit 84a2a365f3
2364 changed files with 950134 additions and 0 deletions
@@ -0,0 +1,15 @@
using System;
namespace VOID.Generic.Dict.Ability
{
[Flags]
public enum AbilityPurposeFlag
{
None = 0,
Damage = 1 << 0,
Buff = 1 << 1,
Debuff = 1 << 2,
Mobility = 1 << 3,
Heal = 1 << 4,
}
}