Updated KD and ModulLoader

This commit is contained in:
Mueller Wayan
2025-05-18 18:05:23 +02:00
parent 47ddfed9bc
commit 1862530728
38 changed files with 602 additions and 360 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 FirebirdJoystickButtonEventArgs : JoystickButtonEventArgs
{
public InputEventType InputEventType { get; private set; }
public FirebirdJoystickButtonEventArgs(JoystickButtonEvent e, InputEventType t) : base(e)
{
InputEventType = t;
}
}
}