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

14 lines
360 B
C#
Raw Normal View History

// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
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; }
}
}