osu/osu.Game.Modes.Catch/CatchRuleset.cs

29 lines
1016 B
C#
Raw Normal View History

// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using System.Collections.Generic;
2017-01-30 04:35:40 +00:00
using osu.Game.Graphics;
2016-11-14 09:54:24 +00:00
using osu.Game.Modes.Catch.UI;
2016-11-14 09:03:20 +00:00
using osu.Game.Modes.Objects;
using osu.Game.Modes.Osu.Objects;
2016-11-14 09:54:24 +00:00
using osu.Game.Modes.Osu.UI;
using osu.Game.Modes.UI;
2016-11-14 09:03:20 +00:00
namespace osu.Game.Modes.Catch
{
public class CatchRuleset : Ruleset
{
public override ScoreOverlay CreateScoreOverlay() => new OsuScoreOverlay();
public override HitRenderer CreateHitRendererWith(List<HitObject> objects) => new CatchHitRenderer { Objects = objects };
2016-11-14 14:18:21 +00:00
protected override PlayMode PlayMode => PlayMode.Catch;
2017-01-30 04:35:40 +00:00
public override FontAwesome Icon => FontAwesome.fa_osu_fruits_o;
2017-01-18 15:51:38 +00:00
public override ScoreProcessor CreateScoreProcessor(int hitObjectCount) => null;
2016-11-29 06:41:48 +00:00
public override HitObjectParser CreateHitObjectParser() => new OsuHitObjectParser();
}
}