Added Comments

This commit is contained in:
Mueller Wayan
2025-04-20 15:37:36 +02:00
parent 08f66af16e
commit 51493135df
9 changed files with 220 additions and 26 deletions
@@ -0,0 +1,19 @@
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;
}
}
}