File tree Expand file tree Collapse file tree 1 file changed +29
-2
lines changed
Assets/MixedRealityToolkit-SDK/Features/SpatialAwareness/System/Handlers Expand file tree Collapse file tree 1 file changed +29
-2
lines changed Original file line number Diff line number Diff line change 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}
You can’t perform that action at this time.
0 commit comments