micromissiles-unity/Assets/Scripts/Threats/DroneThreat.cs

22 lines
519 B
C#
Raw Permalink Normal View History

2024-09-12 00:17:21 -07:00
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class DroneThreat : Threat {
2024-09-13 22:45:25 -07:00
// 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 FixedUpdate() {
base.FixedUpdate();
2024-09-13 22:45:25 -07:00
}
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
}