#pragma once #include "stdafx.h" #include class GamePad { private: vector> _gamePadStates; public: GamePad(); void RefreshState(); bool IsPressed(uint8_t gamepadPort, uint8_t button); };