Files
axyz/include/Engine/Input/EInputCommand.h
T
sippeangelo 5f9dce4303 Added Input
2015-11-24 10:37:50 +01:00

22 lines
369 B
C++

#ifndef Events_InputCommand_h__
#define Events_InputCommand_h__
#include "Core/EventBroker.h"
namespace Events
{
/** Thrown when an input command is sent. */
struct InputCommand : Event
{
/** Numerical ID of the player. */
unsigned int PlayerID;
/** The command that was sent. */
std::string Command;
/** The value of the command. */
float Value;
};
}
#endif