IUIFactory.cs 166 B

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