mirror of
https://github.com/codewriter-packages/Tri-Inspector.git
synced 2025-01-22 08:18:49 -05:00
25 lines
628 B
C#
25 lines
628 B
C#
using System;
|
|
using JetBrains.Annotations;
|
|
|
|
namespace TriInspector
|
|
{
|
|
public abstract class TriPropertyHideProcessor
|
|
{
|
|
internal Attribute RawAttribute { get; set; }
|
|
|
|
[PublicAPI]
|
|
public virtual void Initialize(TriPropertyDefinition propertyDefinition)
|
|
{
|
|
}
|
|
|
|
[PublicAPI]
|
|
public abstract bool IsHidden(TriProperty property);
|
|
}
|
|
|
|
public abstract class TriPropertyHideProcessor<TAttribute> : TriPropertyHideProcessor
|
|
where TAttribute : HideBaseAttribute
|
|
{
|
|
[PublicAPI]
|
|
public TAttribute Attribute => (TAttribute) RawAttribute;
|
|
}
|
|
} |