update core

This commit is contained in:
2024-10-25 15:35:39 +08:00
parent ba9f401013
commit 2bfcd95f09
22 changed files with 5192 additions and 406 deletions

View File

@@ -0,0 +1,21 @@
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.UI;
using IcecreamView;
namespace Views{
public class InitTipPanel : IcecreamView.IC_AbstractModule
{
[SerializeField] private Button _button;
public override void OnOpenView(IC_ViewData parameters)
{
}
public override void OnCloseView()
{
}
}
}