// Copyright (c) Microsoft Corporation. // Licensed under the MIT License. using UnityEngine; namespace Microsoft.MixedReality.Toolkit.SpatialAwareness { public interface IMixedRealitySpatialAwarenessObject { /// /// A unique ID identifying this spatial object. /// int Id { get; set; } /// /// The GameObject representing this spatial object in the scene. /// GameObject GameObject { get; set; } /// /// The MeshRenderer of this spatial object. /// MeshRenderer Renderer { get; set; } /// /// Cleans up this spatial object. /// void CleanObject(); } }