1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-19 10:52:55 +08:00
osu-lazer/osu.Game/Beatmaps/Formats/IHasComboColours.cs

11 lines
206 B
C#
Raw Normal View History

2018-03-13 18:13:50 +08:00
using System.Collections.Generic;
using OpenTK.Graphics;
namespace osu.Game.Beatmaps.Formats
{
public interface IHasComboColours
{
List<Color4> ComboColours { get; set; }
}
}