c0e249e993
This reverts commitdaf3b57e89
, reversing changes made to7a6e0b7d77
.
9 lines
No EOL
128 B
C++
9 lines
No EOL
128 B
C++
#pragma once
|
|
|
|
class BaseControlDevice;
|
|
|
|
class IInputProvider
|
|
{
|
|
public:
|
|
virtual bool SetInput(BaseControlDevice* device) = 0;
|
|
}; |