IUIFactory.cs 177 B

1234567891011
  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. void Remove(UIType type);
  9. }
  10. }