18 lines
521 B
C#
18 lines
521 B
C#
using System;
|
|
|
|
namespace BITKit
|
|
{
|
|
[AttributeUsage(AttributeTargets.Method)]
|
|
public class ExcuteOnAwakeAttribute : Attribute { }
|
|
[AttributeUsage(AttributeTargets.Method)]
|
|
public class ExcuteOnStartAttribute : Attribute { }
|
|
[AttributeUsage(AttributeTargets.Method)]
|
|
public class ExcuteOnStopAttribute : Attribute { }
|
|
|
|
[AttributeUsage(AttributeTargets.Property | AttributeTargets.Field)]
|
|
public class ReadOnlyAttribute : Attribute
|
|
{
|
|
public bool HideLabel { get; set; }
|
|
}
|
|
}
|