mirror of
https://github.com/osukey/osukey.git
synced 2025-05-28 08:57:25 +09:00
11 lines
222 B
C#
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; }
|
|
}
|
|
}
|