Cute_demon_attacks/meng_yao/Assets/script/A_Fight/fireContro.cs
2024-12-17 17:16:00 +08:00

27 lines
385 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class fireContro : MonoBehaviour
{
public Attack attack;
// Start is called before the first frame update
void Start()
{
}
public void StartAttack()
{
attack.Fireattack();
}
public void EndAttack()
{
attack.EndFire();
}
}