mirror of
https://github.com/ppy/osu.git
synced 2024-11-12 04:40:07 +08:00
10 lines
144 B
C#
10 lines
144 B
C#
|
using osu.Game.Rulesets.Replays;
|
|||
|
|
|||
|
namespace osu.Game
|
|||
|
{
|
|||
|
public interface IAutoGenerator
|
|||
|
{
|
|||
|
Replay Generate();
|
|||
|
}
|
|||
|
}
|