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

12 lines
255 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:59:25 -07:00
public class AntishipMissile : MonoBehaviour {
2024-09-13 22:45:25 -07:00
// 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
}