ConnectNotificationMessage.cs 648 B

1234567891011121314151617181920212223
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4. /********************************************************************************
  5. ** Company: YC
  6. ** auth: CaoTing
  7. ** date: 2021\6\7
  8. ** desc: 连接成功
  9. *******************************************************************************/
  10. namespace Studio.WebSocket.Message
  11. {
  12. [System.Serializable]
  13. public class ConnectNotificationMessage : BaseWebSocketMessage
  14. {
  15. public ConnectNotificationMessageData data;
  16. }
  17. [System.Serializable]
  18. public struct ConnectNotificationMessageData
  19. {
  20. public string peerId;
  21. }
  22. }