mirror of
https://github.com/babalae/better-genshin-impact.git
synced 2026-05-23 09:55:48 +08:00
15 lines
374 B
C#
15 lines
374 B
C#
// This code is distributed under MIT license.
|
|
// Copyright (c) 2015 George Mamaladze
|
|
// See license.txt or https://mit-license.org/
|
|
|
|
using System;
|
|
|
|
namespace Gma.System.MouseKeyHook
|
|
{
|
|
/// <summary>
|
|
/// Provides keyboard and mouse events.
|
|
/// </summary>
|
|
public interface IKeyboardMouseEvents : IKeyboardEvents, IMouseEvents, IDisposable
|
|
{
|
|
}
|
|
} |