Assignment for RMIT Mixed Reality in 2020
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

34 lines
1.1 KiB

  1. // This file was @generated with LibOVRPlatform/codegen/main. Do not modify it!
  2. namespace Oculus.Platform.Models
  3. {
  4. using System;
  5. using System.Collections;
  6. using Oculus.Platform.Models;
  7. using System.Collections.Generic;
  8. using UnityEngine;
  9. public class PartyUpdateNotification
  10. {
  11. public readonly PartyUpdateAction Action;
  12. public readonly UInt64 PartyId;
  13. public readonly UInt64 SenderId;
  14. public readonly string UpdateTimestamp;
  15. public readonly string UserAlias;
  16. public readonly UInt64 UserId;
  17. public readonly string UserName;
  18. public PartyUpdateNotification(IntPtr o)
  19. {
  20. Action = CAPI.ovr_PartyUpdateNotification_GetAction(o);
  21. PartyId = CAPI.ovr_PartyUpdateNotification_GetPartyId(o);
  22. SenderId = CAPI.ovr_PartyUpdateNotification_GetSenderId(o);
  23. UpdateTimestamp = CAPI.ovr_PartyUpdateNotification_GetUpdateTimestamp(o);
  24. UserAlias = CAPI.ovr_PartyUpdateNotification_GetUserAlias(o);
  25. UserId = CAPI.ovr_PartyUpdateNotification_GetUserId(o);
  26. UserName = CAPI.ovr_PartyUpdateNotification_GetUserName(o);
  27. }
  28. }
  29. }