Initial Commit

This commit is contained in:
2025-07-04 20:33:06 +03:00
commit 8f09347ae0
9219 changed files with 2447903 additions and 0 deletions
@@ -0,0 +1,28 @@
// This file was @generated with LibOVRPlatform/codegen/main. Do not modify it!
namespace Oculus.Platform
{
using Description = System.ComponentModel.DescriptionAttribute;
public enum AbuseReportVideoMode : int
{
[Description("UNKNOWN")]
Unknown,
/// The UI will collect video evidence if the object_type supports it.
[Description("COLLECT")]
Collect,
/// The UI will try to collect video evidence if the object_type supports it,
/// but will allow the user to skip that step if they wish.
[Description("OPTIONAL")]
Optional,
/// The UI will not collect video evidence.
[Description("SKIP")]
Skip,
}
}