2024-10-11 10:12:15 +08:00
|
|
|
//=================================================== 代码自动创建,禁止手动修改 ===================================================
|
|
|
|
using System.Collections;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using UnityEngine;
|
|
|
|
using UnityEngine.UI;
|
|
|
|
using TMPro;
|
|
|
|
|
|
|
|
namespace Ether
|
|
|
|
{
|
2024-10-24 23:44:04 +08:00
|
|
|
public class SettingFrameBase : FrameBase
|
2024-10-11 10:12:15 +08:00
|
|
|
{
|
2024-10-24 23:44:04 +08:00
|
|
|
public override string PrefabPath { get; } = "Prefabs/Frames/Setting/SettingFrame";
|
|
|
|
|
2024-10-11 10:12:15 +08:00
|
|
|
protected override void OnInit()
|
|
|
|
{
|
2024-10-24 23:44:04 +08:00
|
|
|
|
2024-10-11 10:12:15 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|