using UnityEngine;
using Zenject;
public class Enemy : MonoBehaviour
{
private Player player;
// 주의 : MonoBehaviour이므로 Constructor를 사용할 수 없다.
[Inject]
public void Construct(Player player_injection)
{
this.player = player_injection;
}
public class Factory : Factory<Enemy>
{ }
}