Skip to content

Commit 3baf7fd

Browse files
author
David Kline (ANALOG)
committed
fix empty handler class
1 parent 0c611f6 commit 3baf7fd

File tree

1 file changed

+29
-2
lines changed

1 file changed

+29
-2
lines changed
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,32 @@
1-

1+
// Copyright (c) Microsoft Corporation. All rights reserved.
2+
// Licensed under the MIT License. See LICENSE in the project root for license information.
23

3-
public class MixedRealitySpatialAwarenessSurfaceFindingHandler
4+
using Microsoft.MixedReality.Toolkit.Core.EventDatum.SpatialAwarenessSystem;
5+
using Microsoft.MixedReality.Toolkit.Core.Interfaces.SpatialAwarenessSystem.Handlers;
6+
7+
namespace Microsoft.MixedReality.Toolkit.SDK.SpatialAwarenessSystem.Handlers
48
{
9+
/// <summary>
10+
/// Class providing the default implementation of the <see cref="IMixedRealitySpatialAwarenessSurfaceFindingHandler"/> interface.
11+
/// </summary>
12+
public class MixedRealitySpatialAwarenessSurfaceFindingHandler : IMixedRealitySpatialAwarenessSurfaceFindingHandler
13+
{
14+
/// <inheritdoc />
15+
public void OnSurfaceAdded(MixedRealitySpatialAwarenessSurfaceFindingEventData eventData)
16+
{
17+
// todo
18+
}
19+
20+
/// <inheritdoc />
21+
public void OnSurfaceUpdated(MixedRealitySpatialAwarenessSurfaceFindingEventData eventData)
22+
{
23+
// todo
24+
}
25+
26+
/// <inheritdoc />
27+
public void OnSurfaceRemoved(MixedRealitySpatialAwarenessSurfaceFindingEventData eventData)
28+
{
29+
// todo
30+
}
31+
}
532
}

0 commit comments

Comments
 (0)