minecraft-launcher/app/KonamiCode.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

17 lines
239 B
C
Raw Normal View History

#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;
};