SingletonTEST.cs 271 B

1234567891011121314151617181920
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4. namespace LearnStorage
  5. {
  6. /// <summary>
  7. ///
  8. /// </summary>
  9. public class SingletonTEST : MonoBehaviour
  10. {
  11. private ST st = ST.GetST();
  12. private void Start()
  13. {
  14. }
  15. }
  16. }