// Copyright (c) ppy Pty Ltd . Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. namespace osu.Game.Utils { /// A generic interface for a deeply cloneable type. /// The type of object to clone. public interface IDeepCloneable where T : class { /// /// Creates a new that is a deep copy of the current instance. /// /// The . T DeepClone(); } }