15 lines
269 B
C#
15 lines
269 B
C#
![]() |
using System.Collections;
|
||
|
using System.Collections.Generic;
|
||
|
using UnityEngine;
|
||
|
|
||
|
/// <summary>
|
||
|
/// 塞钱箱类
|
||
|
/// </summary>
|
||
|
public class MoneyBox : MonoBehaviour
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 箱子里有钱吗?
|
||
|
/// </summary>
|
||
|
public bool hasMoney = false;
|
||
|
}
|