mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-09-16 15:22:27 +02:00
Co-authored-by: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> Co-authored-by: metalgearsloth <comedian_vs_clown@hotmail.com>
36 lines
684 B
C#
36 lines
684 B
C#
using System;
|
|
|
|
namespace Robust.Client.UserInterface.XAML
|
|
{
|
|
public sealed class ContentAttribute : Attribute
|
|
{
|
|
}
|
|
|
|
public sealed class UsableDuringInitializationAttribute : Attribute
|
|
{
|
|
public UsableDuringInitializationAttribute(bool usable)
|
|
{
|
|
}
|
|
}
|
|
|
|
public sealed class DeferredContentAttribute : Attribute
|
|
{
|
|
}
|
|
|
|
public interface ITestRootObjectProvider
|
|
{
|
|
object RootObject { get; }
|
|
}
|
|
|
|
public interface ITestProvideValueTarget
|
|
{
|
|
object TargetObject { get; }
|
|
object TargetProperty { get; }
|
|
}
|
|
|
|
public interface ITestUriContext
|
|
{
|
|
Uri BaseUri { get; set; }
|
|
}
|
|
}
|