Files
fishtanks/src/Events/InputCommand.h
T
2014-05-12 22:33:53 +02:00

20 lines
267 B
C++

#ifndef Events_InputCommand_h__
#define Events_InputCommand_h__
#include <boost/any.hpp>
#include "EventBroker.h"
namespace Events
{
struct InputCommand : Event
{
unsigned int PlayerID;
std::string Command;
float Value;
};
}
#endif // Events_InputCommand_h__