15 lines
347 B
C#
15 lines
347 B
C#
using System;
|
|
|
|
namespace Cainos.LucidEditor
|
|
{
|
|
[AttributeUsage(AttributeTargets.Field | AttributeTargets.Method)]
|
|
public class OnValueChangedAttribute : Attribute
|
|
{
|
|
public readonly string methodName;
|
|
|
|
public OnValueChangedAttribute(string methodName)
|
|
{
|
|
this.methodName = methodName;
|
|
}
|
|
}
|
|
} |