This repository has been archived on 2024-06-13. You can view files and clone it, but cannot push or open issues or pull requests.
TrueCraft/TrueCraft.Client/Input/KeyboardEventArgs.cs
2015-06-14 11:24:37 -04:00

12 lines
204 B
C#

using System;
namespace TrueCraft.Client.Input
{
/// <summary>
/// Provides the event data for keyboard events.
/// </summary>
public class KeyboardEventArgs : EventArgs
{
}
}