2017-03-14 03:58:31 +00:00
|
|
|
|
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
|
2017-02-07 04:59:30 +00:00
|
|
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
2016-09-02 09:27:38 +00:00
|
|
|
|
|
2016-11-14 09:54:24 +00:00
|
|
|
|
using osu.Game.Modes.Objects;
|
|
|
|
|
|
|
|
|
|
namespace osu.Game.Modes.Catch.Objects
|
2016-09-02 09:27:38 +00:00
|
|
|
|
{
|
2017-03-14 04:11:07 +00:00
|
|
|
|
public abstract class CatchBaseHit : HitObject
|
2016-09-02 09:27:38 +00:00
|
|
|
|
{
|
2017-03-14 04:11:07 +00:00
|
|
|
|
public float Position { get; set; }
|
2016-09-02 09:27:38 +00:00
|
|
|
|
}
|
|
|
|
|
}
|