Skip to content

Commit

Permalink
feat: update generated files [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
web-flow committed Aug 22, 2024
1 parent 30bd530 commit 5aca7ef
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions RobloxTypes/Generated/Enums.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5189,6 +5189,7 @@ public interface Type : EnumItem
public static Type BeOS { get; } = null!;
public static Type UWP { get; } = null!;
public static Type PS5 { get; } = null!;
public static Type MetaOS { get; } = null!;
public static Type None { get; } = null!;

/// <summary>Returns an array of all <see cref="EnumItem"/> options available for this enum.</summary>
Expand Down Expand Up @@ -8027,6 +8028,25 @@ public static EnumItem[] GetEnumItems()
}
}

public static class VRDeviceType
{
public interface Type : EnumItem
{
}

public static Type Unknown { get; } = null!;
public static Type OculusRift { get; } = null!;
public static Type HTCVive { get; } = null!;
public static Type ValveIndex { get; } = null!;
public static Type OculusQuest { get; } = null!;

/// <summary>Returns an array of all <see cref="EnumItem"/> options available for this enum.</summary>
public static EnumItem[] GetEnumItems()
{
return null!;
}
}

public static class VRLaserPointerMode
{
public interface Type : EnumItem
Expand Down

0 comments on commit 5aca7ef

Please sign in to comment.