IUIFactory.cs 181 B

1234567891011
  1. using ETModel;
  2. using UnityEngine;
  3. namespace ETHotfix
  4. {
  5. public interface IUIFactory
  6. {
  7. UI Create(Scene scene, UIType type, GameObject parent);
  8. void Remove(UIType type);
  9. }
  10. }