Files
Aerofoil/GpCommon/IGpInputDriver.h
2019-12-29 17:39:19 -05:00

8 lines
105 B
C

#pragma once
struct IGpInputDriver
{
virtual void ProcessInput() = 0;
virtual void Shutdown() = 0;
};