osukey/osu.Game/Beatmaps/Formats/IHasComboColours.cs
2018-03-13 19:13:50 +09:00

11 lines
206 B
C#

using System.Collections.Generic;
using OpenTK.Graphics;
namespace osu.Game.Beatmaps.Formats
{
public interface IHasComboColours
{
List<Color4> ComboColours { get; set; }
}
}