12 lines
344 B
C#
12 lines
344 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 { }
|
|||
|
}
|