2024-09-12 00:17:21 -07:00
|
|
|
using System.Collections;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using UnityEngine;
|
|
|
|
|
2024-09-13 22:45:25 -07:00
|
|
|
public class DroneTarget : Target {
|
|
|
|
// Start is called before the first frame update
|
|
|
|
protected override void Start() {
|
|
|
|
base.Start();
|
|
|
|
}
|
2024-09-12 00:17:21 -07:00
|
|
|
|
2024-09-13 22:45:25 -07:00
|
|
|
// Update is called once per frame
|
|
|
|
protected override void Update() {
|
|
|
|
base.Update();
|
|
|
|
}
|
2024-09-12 00:17:21 -07:00
|
|
|
|
2024-09-13 22:45:25 -07:00
|
|
|
protected override void UpdateReady(double deltaTime) {}
|
2024-09-12 00:17:21 -07:00
|
|
|
|
2024-09-13 22:45:25 -07:00
|
|
|
protected override void UpdateBoost(double deltaTime) {}
|
2024-09-12 00:17:21 -07:00
|
|
|
|
2024-09-13 22:45:25 -07:00
|
|
|
protected override void UpdateMidCourse(double deltaTime) {}
|
2024-09-12 00:17:21 -07:00
|
|
|
}
|