AppleWin/source/frontends/libretro/joypad.h
Andrea Odetti 56511affa2 libretro: add namespace ra2 and remove tabs.
Signed-off-by: Andrea Odetti <mariofutire@gmail.com>
2021-02-25 16:24:52 +00:00

22 lines
293 B
C++

#pragma once
#include "frontends/libretro/joypadbase.h"
#include <vector>
#include <map>
namespace ra2
{
class Joypad : public JoypadBase
{
public:
Joypad();
double getAxis(int i) const override;
private:
std::vector<std::map<unsigned, double> > myAxisCodes;
};
}