mirror of
https://github.com/Steffo99/gravity-fusion.git
synced 2024-11-22 16:24:20 +00:00
21 lines
305 B
C#
21 lines
305 B
C#
|
using System.Collections;
|
|||
|
using System.Collections.Generic;
|
|||
|
using UnityEngine;
|
|||
|
|
|||
|
public class BigBang : MonoBehaviour
|
|||
|
{
|
|||
|
public GameObject blackHolePrefab;
|
|||
|
public GameObject particlePrefab;
|
|||
|
public int particlesToSpawn;
|
|||
|
|
|||
|
void Start()
|
|||
|
{
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
void Update()
|
|||
|
{
|
|||
|
|
|||
|
}
|
|||
|
}
|