From 367cffc258eafa71f8518d679b093d9d842893e6 Mon Sep 17 00:00:00 2001 From: Noah Pilarski Date: Sun, 22 May 2022 19:55:07 -0400 Subject: [PATCH] Publicize --- NewHorizons/Handlers/SubtitlesHandler.cs | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/NewHorizons/Handlers/SubtitlesHandler.cs b/NewHorizons/Handlers/SubtitlesHandler.cs index 26cdf081..480d6911 100644 --- a/NewHorizons/Handlers/SubtitlesHandler.cs +++ b/NewHorizons/Handlers/SubtitlesHandler.cs @@ -11,21 +11,21 @@ namespace NewHorizons.Handlers public static int SUBTITLE_HEIGHT = 97; public static int SUBTITLE_WIDTH = 669; // nice - Graphic graphic; - Image image; + public Graphic graphic; + public Image image; public float fadeSpeed = 0.005f; - float fade = 1; - bool fadingAway = true; + public float fade = 1; + public bool fadingAway = true; - static List possibleSubtitles = new List(); - static bool eoteSubtitleHasBeenInserted = false; - int subtitleIndex; + public static List possibleSubtitles = new List(); + public static bool eoteSubtitleHasBeenInserted = false; + public int subtitleIndex; - System.Random randomizer; + public System.Random randomizer; - static readonly int PAUSE_TIMER_MAX = 50; - int pauseTimer = PAUSE_TIMER_MAX; + public static readonly int PAUSE_TIMER_MAX = 50; + public int pauseTimer = PAUSE_TIMER_MAX; public void Start() {