Groundwork for input command proxy

This commit is contained in:
2015-12-11 00:37:48 +01:00
parent 6326a60a79
commit b4df0c49ae
10 changed files with 469 additions and 301 deletions
+22
View File
@@ -0,0 +1,22 @@
#ifndef Events_BindOrigin_h__
#define Events_BindOrigin_h__
#include "Core/EventBroker.h"
namespace Events
{
/** Called to bind an input origin to an input command. */
struct BindOrigin : Event
{
/** The input origin to bind. */
std::string Origin;
/** The command to send. */
std::string Command;
/** The value to send for positive stimulation. */
float Value = 1.f;
};
}
#endif