Skip to content

Commit b649466

Browse files
authored
Merge pull request #6949 from keveleigh/add-namespace
Add missing namespace to IMixedRealityMouseDeviceManager
2 parents 8536657 + b650a2b commit b649466

File tree

1 file changed

+19
-17
lines changed

1 file changed

+19
-17
lines changed
Lines changed: 19 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,29 @@
11
// Copyright (c) Microsoft Corporation. All rights reserved.
22
// Licensed under the MIT License. See LICENSE in the project root for license information.
33

4-
using Microsoft.MixedReality.Toolkit.Input;
54
using System;
65

7-
/// <summary>
8-
/// Interface defining a mouse input device manager.
9-
/// </summary>
10-
public interface IMixedRealityMouseDeviceManager : IMixedRealityInputDeviceManager
6+
namespace Microsoft.MixedReality.Toolkit.Input
117
{
128
/// <summary>
13-
/// Typed representation of the ConfigurationProfile property.
9+
/// Interface defining a mouse input device manager.
1410
/// </summary>
15-
[ObsoleteAttribute("The MouseInputProfile property has been deprecated and will be removed in a future version of MRTK.")]
16-
MixedRealityMouseInputProfile MouseInputProfile { get; }
17-
18-
/// <summary>
19-
/// Gets or sets a multiplier value used to adjust the speed of the mouse cursor.
20-
/// </summary>
21-
float CursorSpeed { get; set; }
11+
public interface IMixedRealityMouseDeviceManager : IMixedRealityInputDeviceManager
12+
{
13+
/// <summary>
14+
/// Typed representation of the ConfigurationProfile property.
15+
/// </summary>
16+
[ObsoleteAttribute("The MouseInputProfile property has been deprecated and will be removed in a future version of MRTK.")]
17+
MixedRealityMouseInputProfile MouseInputProfile { get; }
18+
19+
/// <summary>
20+
/// Gets or sets a multiplier value used to adjust the speed of the mouse cursor.
21+
/// </summary>
22+
float CursorSpeed { get; set; }
2223

23-
/// <summary>
24-
/// Gets or sets a multiplier value used to adjust the speed of the mouse wheel.
25-
/// </summary>
26-
float WheelSpeed { get; set; }
24+
/// <summary>
25+
/// Gets or sets a multiplier value used to adjust the speed of the mouse wheel.
26+
/// </summary>
27+
float WheelSpeed { get; set; }
28+
}
2729
}

0 commit comments

Comments
 (0)