Create "AutoGenerator" base class and interface.

This commit is contained in:
Thomas Tan
2017-04-29 02:08:48 +08:00
parent 2af6c7aa00
commit 9b8b88601f
10 changed files with 125 additions and 89 deletions

View File

@ -0,0 +1,9 @@
using osu.Game.Rulesets.Replays;
namespace osu.Game
{
public interface IAutoGenerator
{
Replay Generate();
}
}