mirror of
https://github.com/thunderbrewhq/thunderbrew
synced 2025-10-27 22:36:05 +03:00
15 lines
237 B
C++
15 lines
237 B
C++
#ifndef EVENT_EVT_KEY_DOWN_HPP
|
|
#define EVENT_EVT_KEY_DOWN_HPP
|
|
|
|
#include "event/Types.hpp"
|
|
#include <storm/List.hpp>
|
|
|
|
class EvtKeyDown {
|
|
public:
|
|
// Member variables
|
|
TSLink<EvtKeyDown> link;
|
|
KEY key;
|
|
};
|
|
|
|
#endif
|