Add assets
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
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;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user