osukey/osu.Game/Context/IContext.cs
2023-04-25 16:01:06 +02:00

14 lines
378 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.Context;
public interface IContext
{
/// <summary>
/// Makes a deep copy of this context.
/// </summary>
/// <returns>The deep copy of this context.</returns>
public IContext Copy();
}