// Start is called before the first frame update
    void Start()
    {
        Zombie enemy = gameObject.GetComponent <Zombie>();

        enemy.AddDamage(1);
        enemy.AddPoints(50);
        float s = 0.01f;

        enemy.Grow(s);
    }