// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
using UnityEngine;
namespace Microsoft.MixedReality.Toolkit.SpatialAwareness
{
public partial class BaseSpatialAwarenessObject : IMixedRealitySpatialAwarenessObject
{
///
public int Id { get; set; }
///
public GameObject GameObject { get; set; }
///
public MeshRenderer Renderer { get; set; }
///
/// The MeshFilter associated with this spatial object's renderer.
///
public MeshFilter Filter { get; set; }
///
public virtual void CleanObject()
{
// todo: consider if this should be virtual, and what params it should contain
}
///
/// Constructor.
///
protected BaseSpatialAwarenessObject()
{
}
}
}