Added MouseScroll event to input manager

This commit is contained in:
2015-12-12 18:30:50 +01:00
parent 0465fdb16d
commit af14d60493
3 changed files with 45 additions and 8 deletions
+17
View File
@@ -0,0 +1,17 @@
#ifndef Events_MouseScroll_h__
#define Events_MouseScroll_h__
#include "EventBroker.h"
namespace Events
{
struct MouseScroll : Event
{
double DeltaX;
double DeltaY;
};
}
#endif