// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
using UnityEngine;
namespace Microsoft.MixedReality.Toolkit.SpatialAwareness
{
///
/// The interface for defining an which provides physical materials
///
public interface ISpatialAwarenessPhysicsProperties
{
///
/// Gets or sets the PhysicMaterial to be used when displaying Meshes.
///
PhysicMaterial PhysicsMaterial { get; set; }
}
}