// 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, } }