mirror of
https://github.com/codewriter-packages/Tri-Inspector.git
synced 2025-01-23 08:48:21 -05:00
23 lines
556 B
C#
23 lines
556 B
C#
using System;
|
|
using JetBrains.Annotations;
|
|
|
|
namespace TriInspector
|
|
{
|
|
public abstract class TriPropertyDisableProcessor
|
|
{
|
|
internal Attribute RawAttribute { get; set; }
|
|
|
|
[PublicAPI]
|
|
public virtual void Initialize(TriPropertyDefinition propertyDefinition)
|
|
{
|
|
}
|
|
|
|
[PublicAPI]
|
|
public abstract bool IsDisabled(TriProperty property);
|
|
}
|
|
|
|
public abstract class TriPropertyDisableProcessor<TAttribute> : TriPropertyDisableProcessor
|
|
where TAttribute : DisableBaseAttribute
|
|
{
|
|
}
|
|
} |