2D-Platformer/Assets/Scripts/Systems/Items/ItemUseFlags.cs
2022-02-12 12:53:50 +02:00

7 lines
No EOL
166 B
C#

using System;
namespace DefaultNamespace
{
[Flags]
public enum ItemUseFlags { UseOnlyGrounded = 1 << 0, UseOnlyInteractive = 1 << 1, InteruptAttack = 1 << 2 }
}