20 lines
455 B
C#
20 lines
455 B
C#
using SFML.Window;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Firebird2D.EventPipelines.EventArguments
|
|
{
|
|
public class FirebirdKeyEventArgs : KeyEventArgs
|
|
{
|
|
public InputEventType InputEventType { get; private set; }
|
|
|
|
public FirebirdKeyEventArgs(KeyEvent e, InputEventType t) : base(e)
|
|
{
|
|
InputEventType = t;
|
|
}
|
|
}
|
|
}
|