10 lines
183 B
C#
10 lines
183 B
C#
namespace FirstGearGames.SmoothCameraShaker
|
|
{
|
|
[System.Serializable, System.Flags]
|
|
public enum InvertibleAxes : int
|
|
{
|
|
X = 1,
|
|
Y = 2,
|
|
Z = 4
|
|
}
|
|
} |