osukey/osu.Game/Context/IContext.cs
2023-04-25 12:12:46 +02:00

11 lines
228 B
C#

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();
}