[Qt] Add basic input

This commit is contained in:
wheremyfoodat 2023-10-30 20:41:09 +02:00
parent 8d5485fbeb
commit a36fd6dd57
2 changed files with 59 additions and 0 deletions

View file

@ -74,4 +74,7 @@ class MainWindow : public QMainWindow {
public:
MainWindow(QApplication* app, QWidget* parent = nullptr);
~MainWindow();
void keyPressEvent(QKeyEvent* event) override;
void keyReleaseEvent(QKeyEvent* event) override;
};