mirror of
https://github.com/elasota/Aerofoil.git
synced 2025-09-23 23:00:42 +00:00
8 lines
105 B
C
8 lines
105 B
C
#pragma once
|
|
|
|
struct IGpInputDriver
|
|
{
|
|
virtual void ProcessInput() = 0;
|
|
virtual void Shutdown() = 0;
|
|
};
|