Files
itgmania212121/stepmania/src/arch/InputHandler/InputHandler_DirectInput.h
T
2003-06-17 05:01:49 +00:00

19 lines
405 B
C++

#ifndef INPUTHANDLER_DIRECTINPUT_H
#define INPUTHANDLER_DIRECTINPUT_H
#include "InputHandler.h"
struct DIDevice;
class InputHandler_DInput: public InputHandler
{
bool OpenDevice(DIDevice &joystick);
public:
InputHandler_DInput();
~InputHandler_DInput();
void GetDevicesAndDescriptions(vector<InputDevice>& vDevicesOut, vector<CString>& vDescriptionsOut);
void Update(float fDeltaTime);
};
#endif