12 lines
236 B
C#
12 lines
236 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
public class PlayerDeath : MonoBehaviour{
|
|
|
|
[SerializeField] PlayerController player = default;
|
|
|
|
public void Die(){
|
|
player.Die();
|
|
}
|
|
}
|