Initial commit

This commit is contained in:
HussienX72u
2026-07-21 08:56:10 +03:00
commit 4017028111
9410 changed files with 2150500 additions and 0 deletions
@@ -0,0 +1,20 @@
using System;
using UnityEngine;
namespace DependencyInjection
{
[AttributeUsage(AttributeTargets.Field | AttributeTargets.Method | AttributeTargets.Property)]
public sealed class InjectAttribute : PropertyAttribute { }
[AttributeUsage(AttributeTargets.Field)]
public sealed class RuntimeInjectAttribute : PropertyAttribute { }
[AttributeUsage(AttributeTargets.Method)]
public sealed class ProvideAttribute : PropertyAttribute { }
/// <summary>
/// Marker interface for MonoBehaviours that provide dependencies to the Injector.
/// </summary>
public interface IDependencyProvider { }
}