IUIFactory.cs 165 B

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