IInputEventListener<TEventType> Interface
Namespace: Stride.InputAssembly: Stride.Input.dll
Interface for classes that want to listen to input event of a certain type
public interface IInputEventListener<TEventType> : IInputEventListener where TEventType : InputEvent
Type Parameters
Name | Description |
---|---|
TEventType | The type of InputEvent that will be sent to this event listener |
Name | Description | |
---|---|---|
Methods | ||
ProcessEvent(TEventType) | Processes a new input event |
Methods
ProcessEvent(TEventType)
Processes a new input event
void ProcessEvent(TEventType inputEvent)
Parameters
Type | Name | Description |
---|---|---|
TEventType | inputEvent | the input event |