1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-06 09:58:21 +08:00
osu-lazer/osu.Game/Rulesets/Mods/IReadFromConfig.cs

16 lines
336 B
C#
Raw Normal View History

using osu.Framework.Allocation;
using osu.Game.Configuration;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace osu.Game.Rulesets.Mods
{
public interface IReadFromConfig
{
void ApplyToConfig(OsuConfigManager config);
}
}