Files

16 lines
261 B
C#
Raw Permalink Normal View History

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