Main/Assets/Code/Logic/GatherTishi/GatherTishiSystem.cs
2025-01-25 04:38:09 +08:00

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
}
}