Initial commit: Unity WordConnect project
This commit is contained in:
@ -0,0 +1,24 @@
|
||||
using System;
|
||||
|
||||
namespace VContainer
|
||||
{
|
||||
public class PreserveAttribute : Attribute
|
||||
{
|
||||
}
|
||||
|
||||
#if UNITY_2018_4_OR_NEWER
|
||||
[JetBrains.Annotations.MeansImplicitUse(
|
||||
JetBrains.Annotations.ImplicitUseKindFlags.Access |
|
||||
JetBrains.Annotations.ImplicitUseKindFlags.Assign |
|
||||
JetBrains.Annotations.ImplicitUseKindFlags.InstantiatedNoFixedConstructorSignature)]
|
||||
#endif
|
||||
[AttributeUsage(AttributeTargets.Constructor | AttributeTargets.Method | AttributeTargets.Property | AttributeTargets.Field, AllowMultiple = false, Inherited = true)]
|
||||
public class InjectAttribute : PreserveAttribute
|
||||
{
|
||||
}
|
||||
|
||||
[AttributeUsage(AttributeTargets.Class | AttributeTargets.Struct | AttributeTargets.Interface, AllowMultiple = false, Inherited = true)]
|
||||
public class InjectIgnoreAttribute : Attribute
|
||||
{
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user