WXGame/Blacksmith/Assets/Script/UI/StorePanel.cs

15 lines
240 B
C#
Raw Normal View History

2024-12-04 17:26:27 +08:00
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class StorePanel : MonoBehaviour
{
2024-12-10 17:46:37 +08:00
public void StartPanel()
2024-12-04 17:26:27 +08:00
{
2024-12-10 17:46:37 +08:00
if (DataManager.GetDay("open")>1)
{
}
2024-12-04 17:26:27 +08:00
}
}