2016-09-02 17:27:38 +08:00
|
|
|
|
//Copyright (c) 2007-2016 ppy Pty Ltd <contact@ppy.sh>.
|
|
|
|
|
//Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
|
|
2016-11-14 17:54:24 +08:00
|
|
|
|
using osu.Game.Modes.Objects;
|
|
|
|
|
|
|
|
|
|
namespace osu.Game.Modes.Taiko.Objects
|
2016-09-02 17:27:38 +08:00
|
|
|
|
{
|
2016-10-13 09:10:15 +08:00
|
|
|
|
public class TaikoBaseHit : HitObject
|
2016-09-02 17:27:38 +08:00
|
|
|
|
{
|
2016-09-02 17:43:24 +08:00
|
|
|
|
public float Scale = 1;
|
2016-09-02 17:27:38 +08:00
|
|
|
|
|
|
|
|
|
public TaikoColour Type;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public enum TaikoColour
|
|
|
|
|
{
|
|
|
|
|
Red,
|
|
|
|
|
Blue
|
|
|
|
|
}
|
|
|
|
|
}
|