micromissiles-unity/Assets/Scripts/Targets/MissileTarget.cs

12 lines
253 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-13 22:45:25 -07:00
public class MissileTarget : MonoBehaviour {
// Start is called before the first frame update
void Start() {}
2024-09-12 00:17:21 -07:00
2024-09-13 22:45:25 -07:00
// Update is called once per frame
void Update() {}
2024-09-12 00:17:21 -07:00
}