mixedreality/com.microsoft.mixedreality..../Core/Definitions/Physics/TeleportSurfaceResult.cs

17 lines
283 B
C#

// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
using System;
namespace Microsoft.MixedReality.Toolkit.Physics
{
[Serializable]
public enum TeleportSurfaceResult
{
None = 0,
Valid,
Invalid,
HotSpot,
}
}