59 lines
946 B
C#
59 lines
946 B
C#
// ***********************************************************************
|
|
// Assembly : Game
|
|
// Author : Kimch
|
|
// Created : 2020-10-15
|
|
// Description :
|
|
// Last Modified By :
|
|
// Last Modified On :
|
|
// ***********************************************************************
|
|
// <copyright file= "BSkillItem" company="Kunpo"></copyright>
|
|
// <summary></summary>
|
|
// ***********************************************************************
|
|
|
|
using UnityEngine;
|
|
using UnityEngine.UI;
|
|
|
|
namespace G.UI
|
|
{
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public class BSkillItem : KUIWidget
|
|
{
|
|
#region Field
|
|
|
|
[KUIFlag]
|
|
Image _imgIcon;
|
|
[KUIFlag]
|
|
Image _imgMask;
|
|
|
|
#endregion
|
|
|
|
#region Method
|
|
|
|
public void SetCoolTime(float time)
|
|
{
|
|
|
|
}
|
|
|
|
public void SetGray(bool gray)
|
|
{
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
#region Unity
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
private void Awake()
|
|
{
|
|
SetViewData();
|
|
}
|
|
|
|
#endregion
|
|
}
|
|
}
|