NOISSUE Add Konami Code

Fun little thing for hiding extra debug options in the future.
This commit is contained in:
Petr Mrázek
2018-03-15 09:27:45 +01:00
parent ea151ca9d4
commit 303842a19e
5 changed files with 80 additions and 0 deletions

17
application/KonamiCode.h Normal file
View File

@ -0,0 +1,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;
};