Files
BABA_YAGA/Assets/FirstGearGames/SmoothCameraShaker/Scripts/InvertibleAxes.cs
2026-05-18 21:22:34 +07:00

10 lines
183 B
C#

namespace FirstGearGames.SmoothCameraShaker
{
[System.Serializable, System.Flags]
public enum InvertibleAxes : int
{
X = 1,
Y = 2,
Z = 4
}
}