A game framework written with osu! in mind.
at master 599 B view raw
1// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence. 2// See the LICENCE file in the repository root for full licence text. 3 4namespace osu.Framework.Testing 5{ 6 /// <summary> 7 /// A class which can be recompiled at runtime to allow for rapid testing. 8 /// </summary> 9 internal interface IDynamicallyCompile 10 { 11 /// <summary> 12 /// A reference to the original instance which dynamic compilation was based on. 13 /// Will reference self if already the original. 14 /// </summary> 15 object DynamicCompilationOriginal { get; } 16 } 17}