add input device abstraction

This commit is contained in:
Glenn Maynard
2003-02-16 01:16:25 +00:00
parent a954373e67
commit 70524dcb6a
3 changed files with 253 additions and 0 deletions
@@ -0,0 +1,20 @@
#ifndef INPUT_HANDLER_WIN32_PUMP_H
#define INPUT_HANDLER_WIN32_PUMP_H 1
#include "InputHandler.h"
class PumpPadDevice: RageInputFeeder
{
struct dev_t; /* MYOB */
dev_t *dev;
public:
void Update();
PumpPadDevice();
~PumpPadDevice();
};
#endif