Files
Aerofoil/GpCommon/IGpInputDriver.h

8 lines
105 B
C
Raw Normal View History

#pragma once
struct IGpInputDriver
{
2019-12-29 17:39:19 -05:00
virtual void ProcessInput() = 0;
virtual void Shutdown() = 0;
};