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

11 lines
222 B
C#

using System.Collections.Generic;
using OpenTK.Graphics;
namespace osu.Game.Beatmaps.Formats
{
public interface IHasCustomColours
{
Dictionary<string, Color4> CustomColours { get; set; }
}
}