1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-29 13:02:56 +08:00
osu-lazer/osu.Game/Skinning/IBeatmapSkin.cs

13 lines
338 B
C#
Raw Normal View History

2020-08-29 16:33:43 +08:00
// 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
{
2020-08-29 17:07:28 +08:00
/// <summary>
/// Marker interface for skins that originate from beatmaps.
/// </summary>
2020-08-29 16:33:43 +08:00
public interface IBeatmapSkin : ISkin
{
}
}