using UnityEngine; public class PlayerHealth : Health { private PlayerStat _pstat; public int currentHp; void Start() { _pstat = GetComponent(); //currentHp = _pstat.MaxHp; // 스태틱 데이터를 가져와 초기화 } public void TakeDamage(int damage) { } }