Cute_demon_attacks/meng_yao/Assets/script/A_Fight/PointBulltContro.cs
wulongxiao c9fcb56061 有bug
2024-12-25 23:08:29 +08:00

18 lines
267 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class PointBulltContro : MonoBehaviour
{
public Attack attack;
void Start()
{
}
public void ShootBullet()
{
attack.Pointattack();
}
}