Cute_demon_attacks/meng_yao/Assets/script/A_Fight/PointBulltContro.cs

18 lines
266 B
C#
Raw Normal View History

2024-12-17 18:07:54 +08:00
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class PointBulltContro : MonoBehaviour
{
public Attack attack;
void Start()
{
}
public void ShootBullet()
{
attack.Pointattack();
}
}