IUIFactory.cs 149 B

12345678910
  1. using Model;
  2. using UnityEngine;
  3. namespace Hotfix
  4. {
  5. public interface IUIFactory
  6. {
  7. UI Create(Scene scene, UIType type, GameObject parent);
  8. }
  9. }