shaoxiadiablo/Assets/AFramework/Editor/Templates/81-C# Script-UIScript.View.cs.txt
2025-05-18 01:04:31 +08:00

59 lines
1.1 KiB
Plaintext

// ***********************************************************************
// Assembly : Game
// Author : #AUTHOR#
// Created : #DATE#
// Description :
// Last Modified By :
// Last Modified On :
// ***********************************************************************
// <copyright file= "#SCRIPTNAME#.View" company="#COMPANY#"></copyright>
// <summary></summary>
// ***********************************************************************
namespace #NAMESPACE#.UI
{
using UnityEngine;
using UnityEngine.UI;
/// <summary>
///
/// </summary>
partial class #SCRIPTNAME#
{
#region Auto Generate
#pragma warning disable CS0649 // 从未对字段赋值,字段将一直保持其默认值 null
#pragma warning restore CS0649 // 从未对字段赋值,字段将一直保持其默认值 null
#endregion
#region Field
#endregion
#region Method
/// <summary>
///
/// </summary>
public void InitView()
{
}
/// <summary>
///
/// </summary>
public void RefreshView()
{
}
/// <summary>
///
/// </summary>
public void UpdateView()
{
}
#endregion
}
}