#ifndef N_KEYBOARD_H_ #define N_KEYBOARD_H_ #include #include #include #include "wayland.hpp" class Keyboard { private: std::vector keys; public: Keyboard( Wayland* wayland ); void setKey( int key, int state ); int getKey( int key ); bool anyKeyDown(); }; extern Keyboard* keyboard; #endif // N_KEYBOARD_H_