Files
itgmania212121/stepmania/src/arch/InputHandler/InputHandler_DirectInput.h
T
Glenn Maynard 81fbead16b split this up
Fix losing keyboard input when changing graphics settings (this happened
with the old code, too).
2003-06-18 05:43:12 +00:00

20 lines
426 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);
void WindowReset();
};
#endif