4 changed files with 19 additions and 27 deletions
@ -1,9 +1,16 @@ |
|||||
// Copyright (c) The Avalonia Project. All rights reserved.
|
// Copyright (c) The Avalonia Project. All rights reserved.
|
||||
// Licensed under the MIT license. See licence.md file in the project root for full license information.
|
// Licensed under the MIT license. See licence.md file in the project root for full license information.
|
||||
|
|
||||
|
using Avalonia.Input.Raw; |
||||
|
|
||||
namespace Avalonia.Input |
namespace Avalonia.Input |
||||
{ |
{ |
||||
public interface IInputDevice |
public interface IInputDevice |
||||
{ |
{ |
||||
|
/// <summary>
|
||||
|
/// Processes raw event. Is called after preprocessing by InputManager
|
||||
|
/// </summary>
|
||||
|
/// <param name="ev"></param>
|
||||
|
void ProcessOwnRawEvent(RawInputEventArgs ev); |
||||
} |
} |
||||
} |
} |
||||
|
|||||
Loading…
Reference in new issue