// %BANNER_BEGIN% // --------------------------------------------------------------------- // %COPYRIGHT_BEGIN% // Copyright (c) 2022-2023 Magic Leap, Inc. All Rights Reserved. // Use of this file is governed by the Magic Leap 2 Software License Agreement, located here: https://www.magicleap.com/software-license-agreement-ml2 // Terms and conditions applicable to third-party materials accompanying this distribution may also be found in the top-level NOTICE file appearing herein. // %COPYRIGHT_END% // --------------------------------------------------------------------- // %BANNER_END% using System; namespace MagicLeap.Spectator { public class SpectatorMessages { public static readonly Guid Heartbeat = new Guid("bc0cff63-a9ef-42c4-9b52-0dd9259dc240"); public static readonly Guid ConnectRequest = new Guid("8d6e45bd-5d04-47c9-8391-5ce80a0825e6"); public static readonly Guid ConnectResponse = new Guid("b105dde6-ea02-46ca-81a8-7a2479ac90a4"); public static readonly Guid SpectatorRequest = new Guid("be6272d7-f503-44f2-85c1-3f1065012c42"); public static readonly Guid SpectatorResponse = new Guid("41e4bf3d-99de-4180-a3e7-26091c30dafc"); public static readonly Guid RenderRequest = new Guid("d141052f-4a26-446c-8e63-8caa8938e9d3"); public static readonly Guid RenderIgnored = new Guid("a6a464d4-a5d1-46df-a269-1eaf709657c7"); public static readonly Guid RenderResponse = new Guid("b48daabf-2ce1-4671-aafc-eacde1289311"); public static readonly Guid RequestReceived = new Guid("fd754f28-aa69-4f83-b22b-c5d160242f47"); public static readonly Guid RequestKeyFrame = new Guid("d4928956-d06f-4050-8e64-e6f32d01bddb"); public static readonly Guid AudioMode = new Guid("731229be-e5da-422d-9afc-b8b9a41003fd"); public static readonly Guid AudioSamples = new Guid("c1d02139-2d4f-4a05-b7f0-9c3112400737"); public static readonly Guid DeviceDiscoveryRequest = new Guid("5c6ee507-63b8-4ff4-a5f5-175d3ee86fee"); public static readonly Guid DeviceDiscoveryReply = new Guid("ee7255bb-f71f-4b81-8363-e7b4e2f81660"); public static readonly Guid SpectatorFocus = new Guid("53de274f-b6f9-4b14-bd43-954d8cd8848b"); public enum ConnectionResponse { Accepted, RejectedByUser, RejectedFromVersionMismatch, RejectedWitoutReason } } }