Files
fishtanks/src/Events/BindMouseButton.h
T
Jace f180abcd63 Input System improved to allow for multiple inputs for same bind
Did not work properly between keyboard and controller before.
2014-05-17 00:53:51 +02:00

18 lines
242 B
C++

#ifndef Events_BindMouseButton_h__
#define Events_BindMouseButton_h__
#include "EventBroker.h"
namespace Events
{
struct BindMouseButton : Event
{
int Button;
std::string Command;
float Value;
};
}
#endif // Events_BindMouseButton_h__