about summary refs log tree commit diff stats
path: root/src/pong.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/pong.h')
-rw-r--r--src/pong.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/pong.h b/src/pong.h
index 0fe384e..74a208a 100644
--- a/src/pong.h
+++ b/src/pong.h
@@ -39,6 +39,14 @@ struct Balls {
 	Rectangle HitBox;
 };
 
+struct Settings {
+	int SoundVolume;
+	int MusicVolume;
+	int Fullscreen;
+};
+
+extern struct Settings GlobalSettings;
+
 extern int Difficulty;
 extern bool GameGoing;
 extern SDL_atomic_t Ticks;