2025-09-02 11:08:15 +08:00
|
|
|
using System;
|
2025-09-06 12:25:55 +08:00
|
|
|
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);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|