1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-07 01:57:19 +08:00

15 lines
380 B
C#
Raw Normal View History

2019-03-04 13:24:19 +09: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.
2022-06-17 16:37:17 +09:00
#nullable disable
namespace osu.Game.Tournament.Screens
{
2019-06-18 14:51:48 +09:00
/// <summary>
/// Marker interface for a screen which provides its own local video background.
/// </summary>
public interface IProvideVideo
{
}
}