Play-/Source/ui_unix/unix/GamePadUtils.h

13 lines
231 B
C
Raw Normal View History

2018-11-26 13:02:15 -05:00
#pragma once
#include <libevdev.h>
#include <array>
#include "Types.h"
class CGamePadUtils
{
public:
static std::array<uint32, 6> GetDeviceID(libevdev* dev);
static bool ParseMAC(std::array<uint32, 6>&, std::string const&);
};