14 lines
466 B
C#
14 lines
466 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 { }
|
|
}
|