mirror of
https://github.com/ppy/osu.git
synced 2024-11-08 09:27:32 +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();
|
|||
|
}
|
|||
|
}
|