mirror of
https://github.com/ppy/osu.git
synced 2024-11-11 21:07:33 +08:00
11 lines
206 B
C#
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; }
|
|
}
|
|
}
|