mirror of
https://github.com/osukey/osukey.git
synced 2025-06-23 20:27:58 +09:00
11 lines
228 B
C#
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();
|
|
}
|