mathe/Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/Samples~/Tutorial/Asteroids/Tests/TestsReferences.cs

30 lines
624 B
C#
Raw Permalink Normal View History

2024-09-20 20:30:10 +02:00
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
}