IContext.cs 193 B

123456789101112
  1. using XGame.Framework.UI;
  2. namespace XGame.Framework
  3. {
  4. /// <summary>
  5. /// 上下文接口
  6. /// </summary>
  7. public interface IContext
  8. {
  9. IUIModule UI { get; }
  10. }
  11. }