Basic score flow.

This commit is contained in:
Dean Herbert
2016-11-29 15:41:48 +09:00
parent bb37e5d955
commit 9871960112
12 changed files with 57 additions and 0 deletions

View File

@ -1,6 +1,7 @@
//Copyright (c) 2007-2016 ppy Pty Ltd <contact@ppy.sh>.
//Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using System;
using System.Collections.Generic;
using osu.Game.Modes.Objects;
using osu.Game.Modes.Osu.Objects;
@ -18,6 +19,8 @@ namespace osu.Game.Modes.Taiko
protected override PlayMode PlayMode => PlayMode.Taiko;
public override Score CreateScore() => new Score();
public override HitObjectParser CreateHitObjectParser() => new OsuHitObjectParser();
}
}