Cute_demon_attacks/meng_yao/Assets/script/A_Fight/XuanYun.cs
2024-12-25 16:38:41 +08:00

18 lines
232 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class XuanYun : MonoBehaviour
{
public void DesSelf(float time)
{
Destroy(gameObject,time);
}
}