mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2025-01-09 10:29:45 +01:00
af11f6936a
It's a bit annoying to pass each screen setting individually, would be nice if we could just wrap it up in a nice struct and pass that instead.
17 lines
251 B
C
17 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 */
|