9 lines
226 B
C#
9 lines
226 B
C#
using System;
|
|
using UnityEngine;
|
|
|
|
namespace Cainos.LucidEditor
|
|
{
|
|
[AttributeUsage(AttributeTargets.Field | AttributeTargets.Property | AttributeTargets.Method)]
|
|
public class DisableInEditModeAttribute : Attribute { }
|
|
}
|