TextureManager.cs 336 B

123456789101112131415
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4. public class TextureManager : MonoBehaviour
  5. {
  6. public static TextureManager Instance;
  7. public List<Texture2D> ListTexturesSpermsCelebrity;
  8. public List<Texture2D> ListTexturesSperms;
  9. public void Awake()
  10. {
  11. Instance = this;
  12. }
  13. }