Tanoda
pb_InspectorNameAttribute.cs
Go to the documentation of this file.
1using System;
2
4{
5 [AttributeUsage(AttributeTargets.Class, AllowMultiple = false, Inherited = true)]
6 public class pb_InspectorNameAttribute : Attribute
7 {
8
9 public readonly string name;
10
12 {
13 this.name = name;
14 }
15 }
16}