Updated KD and ModulLoader
This commit is contained in:
@@ -0,0 +1,28 @@
|
||||
using Firebird2D.Datatypes;
|
||||
using Firebird2D.EventPipelines.EventArguments;
|
||||
using Firebird2D.Interfaces;
|
||||
using SFML.Window;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Text;
|
||||
using System.Text.Json;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Firebird2D.DataypesAndInterfaces.Interfaces
|
||||
{
|
||||
public interface IKeyMapper
|
||||
{
|
||||
void RegisterEvent<T>(string EventName, EventHandler<T> handler, FirebirdEvent eventNumber) where T : EventArgs;
|
||||
void Map(string EventName, FirebirdEvent eventNumber);
|
||||
void SaveMapping(string Path);
|
||||
void LoadMapping(string Path);
|
||||
void InvalidatePipelineCache(FirebirdEvent fbEvent);
|
||||
void HandleKeyboardInput(KeyEvent key, InputEventType type);
|
||||
void HandleMouseInput(MouseButtonEvent button, InputEventType type);
|
||||
void HandleJoystickButtonInput(JoystickButtonEvent joystickButton, InputEventType type);
|
||||
void HandleMouseMovement(MouseMoveEvent mouseMove);
|
||||
public void HandleJoytickMove(JoystickMoveEvent joystickMove);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user