47 lines
986 B
C#
47 lines
986 B
C#
![]() |
// ***********************************************************************
|
||
|
// Assembly : Game
|
||
|
// Author : Kimch
|
||
|
// Created : 2021-06-04
|
||
|
// Description :
|
||
|
// Last Modified By :
|
||
|
// Last Modified On :
|
||
|
// ***********************************************************************
|
||
|
// <copyright file= "GuildListWidget" company="Kunpo"></copyright>
|
||
|
// <summary></summary>
|
||
|
// ***********************************************************************
|
||
|
|
||
|
using UnityEngine;
|
||
|
using UnityEngine.UI;
|
||
|
|
||
|
namespace G.UI
|
||
|
{
|
||
|
/// <summary>
|
||
|
///
|
||
|
/// </summary>
|
||
|
public class GuildListWidget : KUIWidget
|
||
|
{
|
||
|
#region Field
|
||
|
|
||
|
#pragma warning disable CS0649 // 从未对字段赋值,字段将一直保持其默认值 null
|
||
|
#pragma warning restore CS0649 // 从未对字段赋值,字段将一直保持其默认值 null
|
||
|
|
||
|
#endregion
|
||
|
|
||
|
#region Method
|
||
|
|
||
|
#endregion
|
||
|
|
||
|
#region Unity
|
||
|
|
||
|
/// <summary>
|
||
|
///
|
||
|
/// </summary>
|
||
|
private void Awake()
|
||
|
{
|
||
|
|
||
|
}
|
||
|
|
||
|
#endregion
|
||
|
}
|
||
|
}
|