mirror of
https://github.com/ppy/osu
synced 2024-12-11 17:42:28 +00:00
11 lines
202 B
C#
11 lines
202 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace osu.Game.Rulesets.Mods
|
|
{
|
|
public interface IApplicableToAudio : IApplicableToTrack, IApplicableToSample
|
|
{
|
|
}
|
|
}
|