1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-15 06:33:20 +08:00

Taiko notes should have scale, not bool Big.

This commit is contained in:
Dean Herbert 2016-09-02 18:43:24 +09:00
parent cf12f4764f
commit c75d74c84c

View File

@ -6,7 +6,7 @@ namespace osu.Game.Beatmaps.Objects.Taiko
{
class TaikoBaseHit : BaseHit
{
public bool Big;
public float Scale = 1;
public TaikoColour Type;
}