using System.Collections; using System.Collections.Generic; using UnityEngine; /// /// 塞钱箱类 /// public class MoneyBox : MonoBehaviour { /// /// 箱子里有钱吗? /// public bool hasMoney = false; }