整合SLSUtilities

This commit is contained in:
SoulliesOfficial
2026-01-17 11:35:49 -05:00
parent d94241f36c
commit 7ee2894a63
1338 changed files with 3051541 additions and 507034 deletions

View File

@@ -0,0 +1,16 @@
namespace LunaWolfStudios.ScriptableSheets.Samples.RPG
{
[System.Flags]
public enum Abilities
{
None = 0,
Jump = 1 << 0,
DoubleJump = 1 << 1,
Dash = 1 << 2,
Glide = 1 << 3,
WallClimb = 1 << 4,
Teleport = 1 << 5,
Invisibility = 1 << 6,
Fly = 1 << 7,
}
}