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()
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2024-12-25 23:08:29 +08:00
|
|
|
public void ShootBullet()
|
2024-12-17 18:07:54 +08:00
|
|
|
{
|
|
|
|
attack.Pointattack();
|
|
|
|
}
|
|
|
|
}
|