- using System.Collections;
- using System.Collections.Generic;
- using UnityEngine;
- public class TextureManager : MonoBehaviour
- {
- public static TextureManager Instance;
- public List<Texture2D> ListTexturesSpermsCelebrity;
- public List<Texture2D> ListTexturesSperms;
- public void Awake()
- {
- Instance = this;
- }
- }
|