2003-02-16 01:16:25 +00:00
|
|
|
#ifndef INPUT_HANDLER_WIN32_PUMP_H
|
|
|
|
|
#define INPUT_HANDLER_WIN32_PUMP_H 1
|
|
|
|
|
|
|
|
|
|
#include "InputHandler.h"
|
|
|
|
|
|
2003-03-19 20:34:40 +00:00
|
|
|
class USBDevice;
|
2003-02-16 02:25:22 +00:00
|
|
|
class InputHandler_Win32_Pump: public InputHandler
|
2003-02-16 01:16:25 +00:00
|
|
|
{
|
2003-03-19 20:34:40 +00:00
|
|
|
USBDevice *dev;
|
2003-02-16 01:16:25 +00:00
|
|
|
|
|
|
|
|
public:
|
2003-02-16 02:25:22 +00:00
|
|
|
void Update(float fDeltaTime);
|
|
|
|
|
InputHandler_Win32_Pump();
|
|
|
|
|
~InputHandler_Win32_Pump();
|
2003-02-16 01:16:25 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#endif
|
2003-03-19 20:34:40 +00:00
|
|
|
/*
|
|
|
|
|
-----------------------------------------------------------------------------
|
|
|
|
|
Copyright (c) 2002-2003 by the person(s) listed below. All rights reserved.
|
|
|
|
|
Glenn Maynard
|
|
|
|
|
-----------------------------------------------------------------------------
|
|
|
|
|
*/
|