Files
wayland-starter/include/event/input.h
2026-02-25 10:31:43 +01:00

17 lines
249 B
C++

#pragma once
#ifndef H_INPUT_EVENT_
#define H_INPUT_EVENT_
#include "event.h"
struct InputEvent : public Event {
public:
InputEvent() = default;
~InputEvent() = default;
public:
EventType GetType() const override;
};
#endif // H_INPUT_EVENT_