MeleeEnemy Class

PHOTO EMBED

Mon Sep 25 2023 09:09:52 GMT+0000 (Coordinated Universal Time)

Saved by @BenjiSt #c#

public class MeleeEnemy : EnemyBaseClass
{
    // Start is called before the first frame update
    private new void Start()
    {
        base.Start();
    }

    private void Update()
    {
        UpdateSortingOrder();
    }

    private void FixedUpdate()
    {
        if (!killed)
        {
            Move();
        }
    }
}
content_copyCOPY