IUIControllerGroup.cs 147 B

1234567
  1. namespace XGame.Framework.UI.View
  2. {
  3. public interface IUIControllerGroup
  4. {
  5. void AddController(IUIController controller);
  6. }
  7. }