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

32 lines
552 B
C#

// This file was @generated with LibOVRPlatform/codegen/main. Do not modify it!
namespace Oculus.Platform
{
using Description = System.ComponentModel.DescriptionAttribute;
/// How far should we go back in time looking at history.
public enum TimeWindow : int
{
[Description("UNKNOWN")]
Unknown,
[Description("ONE_HOUR")]
OneHour,
[Description("ONE_DAY")]
OneDay,
[Description("ONE_WEEK")]
OneWeek,
[Description("THIRTY_DAYS")]
ThirtyDays,
[Description("NINETY_DAYS")]
NinetyDays,
}
}