PreloadManager.cs 204 B

1234567891011
  1. using System.Collections.Generic;
  2. namespace GFGGame
  3. {
  4. public class PreloadManager : SingletonBase<PreloadManager>
  5. {
  6. private Queue<string> waitLoadList = new Queue<string>();
  7. }
  8. }