2021-07-23 01:21:25 +08:00
|
|
|
using System.Collections;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using UnityEngine;
|
|
|
|
|
2021-08-23 01:55:03 +08:00
|
|
|
public class Missile : MonoBehaviour
|
2021-07-23 01:21:25 +08:00
|
|
|
{
|
2021-08-23 01:55:03 +08:00
|
|
|
//投掷物类,用来控制投掷物
|
2021-07-23 01:21:25 +08:00
|
|
|
// Start is called before the first frame update
|
|
|
|
void Start()
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
// Update is called once per frame
|
|
|
|
void Update()
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|