33 lines
568 B
C#
33 lines
568 B
C#
|
using System.Collections;
|
|||
|
using System.Collections.Generic;
|
|||
|
using UnityEngine;
|
|||
|
|
|||
|
namespace Thousandto.Code.Logic
|
|||
|
{
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 采集UI提示system类
|
|||
|
/// </summary>
|
|||
|
public class GatherTishiSystem
|
|||
|
{
|
|||
|
#region//私有变量
|
|||
|
private bool _isOpen = false;
|
|||
|
#endregion
|
|||
|
|
|||
|
#region//属性
|
|||
|
public bool IsOpen
|
|||
|
{
|
|||
|
get
|
|||
|
{
|
|||
|
return _isOpen;
|
|||
|
}
|
|||
|
set
|
|||
|
{
|
|||
|
_isOpen = value;
|
|||
|
}
|
|||
|
}
|
|||
|
#endregion
|
|||
|
}
|
|||
|
}
|
|||
|
|