tibia-client/src/framework/ui/uievent.h

19 lines
267 B
C
Raw Normal View History

2011-08-14 04:09:11 +02:00
#ifndef UIEVENT_H
#define UIEVENT_H
#include <global.h>
struct UIMouseEvent {
Point mousePos;
Point mouseMoved;
MouseButton button;
MouseWheelDirection wheelDirection;
};
struct UIKeyEvent {
uchar keycode;
int keyboardModifiers;
};
#endif