aboutsummaryrefslogtreecommitdiff
path: root/include/cru/platform/native/native_event.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/cru/platform/native/native_event.hpp')
-rw-r--r--include/cru/platform/native/native_event.hpp12
1 files changed, 12 insertions, 0 deletions
diff --git a/include/cru/platform/native/native_event.hpp b/include/cru/platform/native/native_event.hpp
new file mode 100644
index 00000000..21db5f90
--- /dev/null
+++ b/include/cru/platform/native/native_event.hpp
@@ -0,0 +1,12 @@
+#pragma once
+#include "cru/common/base.hpp"
+
+#include "basic_types.hpp"
+#include "cru/common/ui_base.hpp"
+
+namespace cru::platform::native {
+struct NativeMouseButtonEventArgs {
+ MouseButton button;
+ ui::Point point;
+};
+} // namespace cru::platform::native