vanilla/app/keymap.h
MattKC cb0a2afaa1 started implementing controller remapping functionality
Currently axes don't work, will need to find a good solution for this
2024-11-14 18:49:18 -08:00

19 lines
No EOL
276 B
C++

#ifndef KEYMAP_H
#define KEYMAP_H
#include <QObject>
#include <map>
class KeyMap : public std::map<Qt::Key, int>
{
public:
KeyMap();
bool load(const QString &filename);
bool save(const QString &filename);
static QString getConfigFilename();
};
#endif