mirror of
https://github.com/AssetRipper/AssetRipper.git
synced 2025-12-11 20:15:29 +01:00
12 lines
156 B
C#
12 lines
156 B
C#
namespace AssetRipper.Core.Classes.Camera
|
|
{
|
|
[Flags]
|
|
public enum StereoTargetEyeMask
|
|
{
|
|
None = 0,
|
|
Left = 1,
|
|
Right = 2,
|
|
Both = Left | Right
|
|
}
|
|
}
|