Basic input binding and command publishing system

This commit is contained in:
2014-05-05 09:17:58 +02:00
parent 5e7537b903
commit 0e068be77b
10 changed files with 233 additions and 11 deletions
+17
View File
@@ -0,0 +1,17 @@
#ifndef Events_InputCommand_h__
#define Events_InputCommand_h__
#include "EventBroker.h"
namespace Events
{
struct InputCommand : Event
{
unsigned int PlayerID;
std::string Command;
};
}
#endif // Events_InputCommand_h__