mirror of
https://github.com/ConjureETS/Labo_2_equ_2_a15.git
synced 2026-03-24 01:21:07 +00:00
15 lines
219 B
C#
15 lines
219 B
C#
using UnityEngine;
|
|
using System.Collections;
|
|
|
|
public class RocketBehaviour : MonoBehaviour {
|
|
|
|
void Start ()
|
|
{
|
|
}
|
|
|
|
//TODO : kill the rocket when exiting camera view
|
|
void Update ()
|
|
{
|
|
}
|
|
}
|