mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
20 lines
456 B
C
20 lines
456 B
C
|
#pragma once
|
||
|
|
||
|
#include <cstdint>
|
||
|
#include "MouseButtons.h"
|
||
|
#include "MouseEventArgs.h"
|
||
|
|
||
|
namespace Forms
|
||
|
{
|
||
|
// Provides data for all mouse events
|
||
|
class HandledMouseEventArgs : public MouseEventArgs
|
||
|
{
|
||
|
public:
|
||
|
HandledMouseEventArgs() = default;
|
||
|
HandledMouseEventArgs(MouseButtons Button, uint32_t Clicks, int32_t X, int32_t Y, int32_t Delta);
|
||
|
~HandledMouseEventArgs() = default;
|
||
|
|
||
|
// Whether or not the event was pre handled...
|
||
|
bool Handled;
|
||
|
};
|
||
|
}
|