VR4RoboticArm2/VR4RoboticArm/Library/PackageCache/com.meta.xr.sdk.platform/Scripts/PartyUpdateAction.cs
IonutMocanu 48cccc22ad Main2
2025-09-08 11:13:29 +03:00

36 lines
964 B
C#

// This file was @generated with LibOVRPlatform/codegen/main. Do not modify it!
namespace Oculus.Platform
{
using Description = System.ComponentModel.DescriptionAttribute;
/// An enum that specifies the type of action related to the party and the
/// user. For example, PartyUpdateNotification#Action contains the information
/// about the user joined or left the party or the user was invited or
/// uninvited to the party.
public enum PartyUpdateAction : int
{
[Description("UNKNOWN")]
Unknown,
/// This `enum` member indicates the user joined the party.
[Description("Join")]
Join,
/// This `enum` member indicates the user left the party.
[Description("Leave")]
Leave,
/// This `enum` member indicates the user was invited to the party.
[Description("Invite")]
Invite,
/// This `enum` member indicates the user was uninvited to the party.
[Description("Uninvite")]
Uninvite,
}
}