16 lines
370 B
C#
16 lines
370 B
C#
using System;
|
|
using UnityEngine;
|
|
|
|
namespace Cainos.LucidEditor
|
|
{
|
|
[AttributeUsage(AttributeTargets.Field | AttributeTargets.Method)]
|
|
public class PropertyOrderAttribute : Attribute
|
|
{
|
|
public readonly int propertyOrder;
|
|
|
|
public PropertyOrderAttribute(int propertyOrder)
|
|
{
|
|
this.propertyOrder = propertyOrder;
|
|
}
|
|
}
|
|
} |