TestsReferences.cs 624 B

1234567891011121314151617181920212223242526272829
  1. using UnityEngine;
  2. public class TestsReferences : MonoBehaviour
  3. {
  4. #region SCENES
  5. public Object asteroidsScene;
  6. #endregion
  7. #region CORE
  8. public GameObject spaceshipPrefab;
  9. public GameObject cameraPrefab;
  10. public GameObject asteroidPrefab;
  11. public GameObject gameManagerPrefab;
  12. #endregion
  13. #region WEAPONS
  14. public GameObject projectilePrefab;
  15. public GameObject laserPrefab;
  16. #endregion
  17. #region UI
  18. public GameObject inGameMenuPrefab;
  19. #endregion
  20. #region FX
  21. public GameObject spaceshipDebrisPrefab;
  22. public GameObject explosionPrefab;
  23. #endregion
  24. }