feat: event sketch
This commit is contained in:
16
include/event/input.h
Normal file
16
include/event/input.h
Normal 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_
|
||||
Reference in New Issue
Block a user