Last active
June 27, 2017 01:27
-
-
Save atakotestudios/d9a43fe8b6055fc38f36cc8a42636c76 to your computer and use it in GitHub Desktop.
Projectile Script
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System.Collections; | |
using System.Collections.Generic; | |
using UnityEngine; | |
public class Projectile : MonoBehaviour { | |
// Use this for initialization | |
void Start () { | |
Destroy(gameObject, 11f); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment