Beispiel #1
0
        //public List<SkinManiaSection> ManiaSections { get; set; }

        public Skin()
        {
            GeneralSection      = new SkinGeneralSection();
            ColoursSection      = new SkinColoursSection();
            FontsSection        = new SkinFontsSection();
            CatchTheBeatSection = new SkinCatchTheBeatSection();
            //ManiaSections = new List<SkinManiaSection>();
        }
Beispiel #2
0
        private static List <string> FontsSection(SkinFontsSection section)
        {
            var list = WriteHelper.BaseListFormat("Fonts");

            list.AddRange(new string[]
            {
                $"HitCirclePrefix: {section.HitCirclePrefix}",
                $"HitCircleOverlap: {section.HitCircleOverlap.Format()}",
                $"ScorePrefix: {section.ScorePrefix}",
                $"ScoreOverlap: {section.ScoreOverlap.Format()}",
                $"ComboPrefix: {section.ComboPrefix}",
                $"ComboOverlap: {section.ComboOverlap.Format()}",
            });

            return(list);
        }