Updated KD and ModulLoader
This commit is contained in:
@@ -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 FirebirdMouseButtonEventArgs : MouseButtonEventArgs
|
||||
{
|
||||
public InputEventType InputEventType { get; private set; }
|
||||
|
||||
public FirebirdMouseButtonEventArgs(MouseButtonEvent e,InputEventType t) : base(e)
|
||||
{
|
||||
InputEventType = t;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user