EG/gui/__init__.py
2025-12-12 16:16:15 +08:00

10 lines
164 B
Python
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

"""
GUI包
提供GUI元素管理相关的功能
- GUIManager: GUI元素管理器类
"""
from .gui_manager import GUIManager
__all__ = ['GUIManager']