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() {