1
0
mirror of https://github.com/TerryCavanagh/VVVVVV.git synced 2024-06-26 14:38:30 +02:00
VVVVVV/desktop_version/src/ScreenSettings.h

18 lines
251 B
C
Raw Normal View History

#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 */