Files
AwperativeKernel/AwperativeKernel/Kernel/Inspector/Show.cs
2026-02-22 21:49:18 -05:00

11 lines
193 B
C#

using System;
namespace AwperativeKernel;
[AttributeUsage(AttributeTargets.Field | AttributeTargets.Property)]
public class Show : Attribute
{
public bool UseInspectorDefaults = true;
}