git-subtree-dir: external/gainput git-subtree-split: 2be0a50089eafcc6fccb66142180082e48f27f4c
29 lines
400 B
C++
29 lines
400 B
C++
|
|
#ifndef GAINPUTINPUTDEVICEMOUSENULL_H_
|
|
#define GAINPUTINPUTDEVICEMOUSENULL_H_
|
|
|
|
namespace gainput
|
|
{
|
|
|
|
class InputDeviceMouseImplNull : public InputDeviceMouseImpl
|
|
{
|
|
public:
|
|
InputDeviceMouseImplNull(InputManager& /*manager*/, DeviceId /*device*/)
|
|
{
|
|
}
|
|
|
|
InputDevice::DeviceVariant GetVariant() const
|
|
{
|
|
return InputDevice::DV_NULL;
|
|
}
|
|
|
|
void Update(InputDeltaState* /*delta*/)
|
|
{
|
|
}
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|
|
|