mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 09:58:21 +08:00
16 lines
336 B
C#
16 lines
336 B
C#
|
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);
|
|||
|
}
|
|||
|
}
|