11 lines
230 B
C#
11 lines
230 B
C#
using System;
|
|
using UnityEngine;
|
|
|
|
namespace Golems.Attributes
|
|
{
|
|
[AttributeUsage(AttributeTargets.Property | AttributeTargets.Field, AllowMultiple = true)]
|
|
public class ReadOnly : PropertyAttribute
|
|
{
|
|
|
|
}
|
|
} |