10 lines
217 B
C#
10 lines
217 B
C#
using System;
|
|
|
|
namespace EditorAttributes
|
|
{
|
|
/// <summary>
|
|
/// Attribute to show a non serialized member in the inspector
|
|
/// </summary>
|
|
public class ShowInInspectorAttribute : Attribute { }
|
|
}
|