committed by
GitHub
25 changed files with 62 additions and 45 deletions
@ -1,9 +1,16 @@ |
|||
// 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.
|
|||
|
|||
using Avalonia.Input.Raw; |
|||
|
|||
namespace Avalonia.Input |
|||
{ |
|||
public interface IInputDevice |
|||
{ |
|||
/// <summary>
|
|||
/// Processes raw event. Is called after preprocessing by InputManager
|
|||
/// </summary>
|
|||
/// <param name="ev"></param>
|
|||
void ProcessRawEvent(RawInputEventArgs ev); |
|||
} |
|||
} |
|||
|
|||
Loading…
Reference in new issue