12 lines
304 B
C#
12 lines
304 B
C#
using Sirenix.OdinInspector;
|
|
|
|
namespace VOID.Generic.DynamicValue
|
|
{
|
|
[HideLabel]
|
|
[HideReferenceObjectPicker]
|
|
public class MarkerDummyString
|
|
{
|
|
[ShowInInspector, ReadOnly, HideLabel] private readonly string _str;
|
|
public MarkerDummyString(string str) => _str = str;
|
|
}
|
|
} |