18 lines
266 B
C#
18 lines
266 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();
|
||
|
}
|
||
|
}
|