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