1
This commit is contained in:
15
Core/Attributes/ExcuteOnLoad.cs
Normal file
15
Core/Attributes/ExcuteOnLoad.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace BITKit
|
||||
{
|
||||
[AttributeUsage(AttributeTargets.Method)]
|
||||
public class ExcuteOnAwakeAttribute : Attribute { }
|
||||
[AttributeUsage(AttributeTargets.Method)]
|
||||
public class ExcuteOnStartAttribute : Attribute { }
|
||||
[AttributeUsage(AttributeTargets.Method)]
|
||||
public class ExcuteOnStopAttribute : Attribute { }
|
||||
}
|
16
Core/Attributes/IBITCommand.cs
Normal file
16
Core/Attributes/IBITCommand.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace BITKit
|
||||
{
|
||||
[AttributeUsage(AttributeTargets.Method)]
|
||||
public class BITCommandAttribute : Attribute { }
|
||||
[AttributeUsage(AttributeTargets.Field)]
|
||||
public class InjectAttribute : System.Attribute
|
||||
{
|
||||
|
||||
}
|
||||
}
|
11
Core/Attributes/PersistentData.cs
Normal file
11
Core/Attributes/PersistentData.cs
Normal file
@@ -0,0 +1,11 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Security;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
namespace BITKit
|
||||
{
|
||||
[AttributeUsage(AttributeTargets.Field)]
|
||||
public class SaveDataAttribute : Attribute { }
|
||||
}
|
Reference in New Issue
Block a user