mirror of
https://github.com/codewriter-packages/Tri-Inspector.git
synced 2025-01-24 01:08:21 -05:00
16 lines
371 B
C#
16 lines
371 B
C#
using System;
|
|
|
|
namespace TriInspector
|
|
{
|
|
public abstract class TriPropertyHideProcessor
|
|
{
|
|
internal Attribute RawAttribute { get; set; }
|
|
|
|
public abstract bool IsHidden(TriProperty property);
|
|
}
|
|
|
|
public abstract class TriPropertyHideProcessor<TAttribute> : TriPropertyHideProcessor
|
|
where TAttribute : HideBaseAttribute
|
|
{
|
|
}
|
|
} |