f180abcd63
Did not work properly between keyboard and controller before.
18 lines
242 B
C++
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__
|