namespace RecRoomArchive.Models.API.Platform { /// /// The types of platforms that Rec Room has support for...as a mask! /// [Flags] public enum PlatformMask { None = 0, Steam = 1, Oculus = 2, PlayStation = 4, Xbox = 8, RecNet = 16, IOS = 32, GooglePlay = 64, Standalone = 128, Pico = 256, All = -1 } }