csharp 79C13846-EE97-4580-A34A-35B2065F4C16

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了csharp 79C13846-EE97-4580-A34A-35B2065F4C16相关的知识,希望对你有一定的参考价值。

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>
    { }
}

以上是关于csharp 79C13846-EE97-4580-A34A-35B2065F4C16的主要内容,如果未能解决你的问题,请参考以下文章