mirror of
https://github.com/thunderbrewhq/thunderbrew
synced 2025-12-12 19:22:30 +00: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
|