Skip to content
Permalink
b350d64c75
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
20 lines (14 sloc) 314 Bytes
using UnityEngine;
using System.Collections;
public class LegosteroidSpawner : MonoBehaviour {
// Use this for initialization
void Start () {
}
IEnumerator AsteroidSpawn()
{
yield return new WaitForSeconds(0.2f);
}
// Update is called once per frame
void Update () {
}
}