summaryrefslogtreecommitdiffstats
path: root/application/KonamiCode.h
blob: 3d320ae7f9385dc80e78839da0623c98e8b0bbcf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#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;
};