File size: 624 Bytes
18a519f | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 | using UnityEngine;
public class TestsReferences : MonoBehaviour
{
#region SCENES
public Object asteroidsScene;
#endregion
#region CORE
public GameObject spaceshipPrefab;
public GameObject cameraPrefab;
public GameObject asteroidPrefab;
public GameObject gameManagerPrefab;
#endregion
#region WEAPONS
public GameObject projectilePrefab;
public GameObject laserPrefab;
#endregion
#region UI
public GameObject inGameMenuPrefab;
#endregion
#region FX
public GameObject spaceshipDebrisPrefab;
public GameObject explosionPrefab;
#endregion
}
|