
플레이어 매니저에 골드를 추가하고 그것을 UI연결할 예정 GoldManager 추가using System;using UnityEngine;public class GoldManager : MonoBehaviour{ public static event Action _gold_get_event; public static Action _gold_add_event; int _current_gold; void Start() { _gold_add_event = AddGold; } void OnDisable() { _gold_add_event = null; } void AddGold(int addgold) { _curren..