using System.Diagnostics;
namespace Sandbox.Reactivity.Internals;
internal interface IReactiveObject
{
#if DEBUG && SANDBOX
#endif
}
internal static class ReactiveObjectExtensions
{
extension(IReactiveObject reactive)
{
[Conditional("DEBUG")]
public void SetDebugInfo(
string? name = null,
string? icon = null,
string? location = null,
object? parent = null,
#if SANDBOX
PropertyDescription? container = null
#else
#endif
)
{
#if DEBUG && SANDBOX
#endif
}
}
}