Mode -> Ruleset.

This commit is contained in:
Dean Herbert
2017-04-18 16:05:58 +09:00
parent 0bed537239
commit fbd26a1d5e
236 changed files with 642 additions and 642 deletions

View File

@ -0,0 +1,12 @@
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using osu.Game.Rulesets.Objects;
namespace osu.Game.Rulesets.Catch.Objects
{
public abstract class CatchBaseHit : HitObject
{
public float Position { get; set; }
}
}