1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-16 14:52:55 +08:00
osu-lazer/osu.Game/Skinning/IBeatmapSkin.cs
2020-08-29 11:07:28 +02:00

13 lines
338 B
C#

// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
namespace osu.Game.Skinning
{
/// <summary>
/// Marker interface for skins that originate from beatmaps.
/// </summary>
public interface IBeatmapSkin : ISkin
{
}
}