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