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

17 lines
312 B
C#
Raw Normal View History

2024-09-12 00:17:21 -07:00
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
2024-09-24 19:24:50 -07:00
public abstract class Threat : Agent {
2024-09-13 22:45:25 -07:00
public override bool IsAssignable() {
return false;
}
2024-09-12 00:17:21 -07:00
2024-09-13 22:45:25 -07:00
protected override void Start() {
base.Start();
}
2024-09-12 00:17:21 -07:00
protected override void FixedUpdate() {
base.FixedUpdate();
2024-09-13 22:45:25 -07:00
}
2024-09-12 00:17:21 -07:00
}