12 lines
204 B
C#
12 lines
204 B
C#
using System;
|
|
|
|
namespace TrueCraft.Client.Input
|
|
{
|
|
/// <summary>
|
|
/// Provides the event data for keyboard events.
|
|
/// </summary>
|
|
public class KeyboardEventArgs : EventArgs
|
|
{
|
|
}
|
|
}
|