11 lines
108 B
C++
11 lines
108 B
C++
#pragma once
|
|
|
|
namespace TLAC::Input
|
|
{
|
|
class IInputDevice
|
|
{
|
|
public:
|
|
virtual bool PollInput() = 0;
|
|
};
|
|
}
|