// Copyright (c) ppy Pty Ltd . Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. namespace osu.Framework.Testing { /// /// A class which can be recompiled at runtime to allow for rapid testing. /// internal interface IDynamicallyCompile { /// /// A reference to the original instance which dynamic compilation was based on. /// Will reference self if already the original. /// object DynamicCompilationOriginal { get; } } }