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,13 @@
using DependencyInjection.ScriptableObjects;
using UnityEngine;
/// <summary>
/// Concrete ScriptableObject anchor for IPlacementHandler.
/// Injected at runtime so consumers always hold a stable typed reference
/// and can react to handler swaps via the OnValueChanged event.
/// </summary>
[CreateAssetMenu(fileName = "GhostAnchor", menuName = "Dependency Injection/Ghost Anchor")]
public class GhostAnchor : RuntimeAnchor<IPlacementHandler>
{
}