1
0
Fork 0
spectre/include/Spectre/Input/InputDevice.h
2016-01-10 09:26:43 +01:00

19 lines
271 B
C++

#ifndef SPECTRE_INTPUT_DEVICE_H
#define SPECTRE_INTPUT_DEVICE_H
class InputDevice
{
friend class InputModule;
public :
virtual ~InputDevice();
virtual void init();
protected :
virtual void update(InputModule *input) = 0;
};
#endif /* SPECTRE_INTPUT_DEVICE_H */