mirror of
https://github.com/osukey/osukey.git
synced 2025-05-07 06:37:18 +09:00
33 lines
777 B
C#
33 lines
777 B
C#
using osu.Framework.Configuration;
|
|
using osu.Framework.Platform;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace osu.Game.Screens.Tournament.Components
|
|
{
|
|
public class DrawingsConfigManager : ConfigManager<DrawingsConfig>
|
|
{
|
|
public override string Filename => @"drawings.ini";
|
|
|
|
protected override void InitialiseDefaults()
|
|
{
|
|
Set(DrawingsConfig.Groups, 8, 1, 8);
|
|
Set(DrawingsConfig.TeamsPerGroup, 8, 1, 8);
|
|
}
|
|
|
|
public DrawingsConfigManager(Storage storage)
|
|
: base(storage)
|
|
{
|
|
}
|
|
}
|
|
|
|
public enum DrawingsConfig
|
|
{
|
|
Groups,
|
|
TeamsPerGroup
|
|
}
|
|
}
|