aboutsummaryrefslogtreecommitdiff
path: root/launcher/KonamiCode.h
blob: 5c21e2ff37bfa7e5019616d54ce774bf9ade26b4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#pragma once

#include <QKeyEvent>

class KonamiCode : public QObject {
    Q_OBJECT
   public:
    KonamiCode(QObject* parent = 0);
    void input(QEvent* event);

   signals:
    void triggered();

   private:
    int m_progress = 0;
};