public static void Load()
        {
            if (!File.Exists(GameConts.ScoreLocation))
            {
                return;
            }
            Scores = BinaryHelpers.ReadFromBinaryFile <Scores>(GameConts.ScoreLocation);

            Scores.Score = Scores.Score.OrderByDescending(x => x.TimeTookMs) /*.ThenByDescending(x => x.AcScore)*/.ToList();
        }