mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2025-01-09 18:39:45 +01:00
18 lines
251 B
C
18 lines
251 B
C
|
#ifndef SCREENSETTINGS_H
|
||
|
#define SCREENSETTINGS_H
|
||
|
|
||
|
struct ScreenSettings
|
||
|
{
|
||
|
ScreenSettings();
|
||
|
|
||
|
int windowWidth;
|
||
|
int windowHeight;
|
||
|
bool fullscreen;
|
||
|
bool useVsync;
|
||
|
int stretch;
|
||
|
bool linearFilter;
|
||
|
bool badSignal;
|
||
|
};
|
||
|
|
||
|
#endif /* SCREENSETTINGS_H */
|