Format all files

This commit is contained in:
Titan Yuan
2024-09-13 22:45:25 -07:00
parent df4c8dfbfe
commit 9be43821ef
21 changed files with 1197 additions and 1415 deletions

View File

@@ -2,29 +2,20 @@ using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class DroneTarget : Target
{
// Start is called before the first frame update
protected override void Start()
{
base.Start();
}
public class DroneTarget : Target {
// Start is called before the first frame update
protected override void Start() {
base.Start();
}
// Update is called once per frame
protected override void Update()
{
base.Update();
}
// Update is called once per frame
protected override void Update() {
base.Update();
}
protected override void UpdateReady(double deltaTime) {
protected override void UpdateReady(double deltaTime) {}
}
protected override void UpdateBoost(double deltaTime) {}
protected override void UpdateBoost(double deltaTime) {
}
protected override void UpdateMidCourse(double deltaTime) {
}
protected override void UpdateMidCourse(double deltaTime) {}
}

View File

@@ -2,17 +2,10 @@ using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class MissileTarget : MonoBehaviour
{
// Start is called before the first frame update
void Start()
{
}
public class MissileTarget : MonoBehaviour {
// Start is called before the first frame update
void Start() {}
// Update is called once per frame
void Update()
{
}
// Update is called once per frame
void Update() {}
}

View File

@@ -2,17 +2,16 @@ using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public abstract class Target : Agent
{
public override bool IsAssignable() {
return false;
}
public abstract class Target : Agent {
public override bool IsAssignable() {
return false;
}
protected override void Start() {
base.Start();
}
protected override void Start() {
base.Start();
}
protected override void Update() {
base.Update();
}
protected override void Update() {
base.Update();
}
}