1#ifndef KeyRegistrationCommand_H 
    2#define KeyRegistrationCommand_H 
    5#include "KeyboardEventManager.h" 
Defines the base class for all command objects.
EventType
Enum class representing the types of input events.
Definition EventType.h:19
Base class for all command objects.
Definition CommandBase.h:19
AZUL_KEY key
The key to register.
Definition KeyRegistrationCommand.h:44
void Execute() override
Executes the registration command for the key event.
Definition KeyRegistrationCommand.cpp:6
KeyRegistrationCommand(Inputable *in, AZUL_KEY k, EventType e)
Constructor for KeyRegistrationCommand.
Definition KeyRegistrationCommand.cpp:4
EventType eventType
The event type to register.
Definition KeyRegistrationCommand.h:49
Inputable * ptrIn
Pointer to the Inputable object.
Definition KeyRegistrationCommand.h:39