mirror of
https://github.com/elasota/Aerofoil.git
synced 2025-09-23 06:53:43 +00:00
14 lines
317 B
C++
14 lines
317 B
C++
#pragma once
|
|
|
|
// Display drivers are responsible for timing and calling the game tick function.
|
|
class IGpDisplayDriver
|
|
{
|
|
public:
|
|
virtual ~IGpDisplayDriver() {}
|
|
|
|
virtual void Run() = 0;
|
|
virtual void Shutdown() = 0;
|
|
|
|
virtual void GetDisplayResolution(unsigned int &width, unsigned int &height) = 0;
|
|
};
|