Files
BABA_YAGA/Assets/FirstGearGames/SmoothCameraShaker/Scripts/InvertibleAxes.cs

10 lines
183 B
C#
Raw Normal View History

2026-05-18 21:22:34 +07:00
namespace FirstGearGames.SmoothCameraShaker
{
[System.Serializable, System.Flags]
public enum InvertibleAxes : int
{
X = 1,
Y = 2,
Z = 4
}
}