Files
Gen_Hack-and-Slash-Roguelit…/Client/Assets/Scripts/UI/AttackModeUI.cs

17 lines
275 B
C#
Raw Normal View History

2025-09-02 11:08:15 +08:00
using System;
using Prefab;
2025-09-02 11:08:15 +08:00
using UnityEngine;
using UnityEngine.UI;
namespace UI
{
public class AttackModeUI:MonoBehaviour
{
public UIImageAnimator icon;
private void Start()
{
icon.gameObject.SetActive(false);
}
}
}