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

26 lines
547 B
C#

// This file was @generated with LibOVRPlatform/codegen/main. Do not modify it!
namespace Oculus.Platform
{
using Description = System.ComponentModel.DescriptionAttribute;
/// Describe the current status of the user and it can be retrieved with
/// User#PresenceStatus.
public enum UserPresenceStatus : int
{
[Description("UNKNOWN")]
Unknown,
/// The user status is currently online.
[Description("ONLINE")]
Online,
/// The user status is currently offline.
[Description("OFFLINE")]
Offline,
}
}