feat: event sketch

This commit is contained in:
2026-02-25 10:31:43 +01:00
parent 73fda759c5
commit 0dd2404881
5 changed files with 80 additions and 2 deletions

16
include/event/input.h Normal file
View File

@@ -0,0 +1,16 @@
#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_