File size: 1,052 Bytes
9328e91
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
"""UI Tabs Package for Game Config IDE.

This package contains modular UI tab components that can be
imported and used within the main Gradio application.
"""

from .story_graph_tab import create_story_graph_tab
from .study_3d_tab import create_3d_study_tab
from .resources_hub_tab import create_resources_hub_tab
from .mechanic_translation_tab import create_mechanic_translation_tab
from .llm_playtest_tab import create_llm_playtest_tab
from .big_rpg_scale_tab import create_big_rpg_scale_tab
from .dnd_gm_tab import create_dnd_gm_tab
from .story_architect_tab import create_story_architect_tab
from .narrative_engine_tab import create_narrative_engine_tab
from .config_analysis_tab import create_config_analysis_tab

__all__ = [
    'create_story_graph_tab',
    'create_3d_study_tab',
    'create_resources_hub_tab',
    'create_mechanic_translation_tab',
    'create_llm_playtest_tab',
    'create_big_rpg_scale_tab',
    'create_dnd_gm_tab',
    'create_story_architect_tab',
    'create_narrative_engine_tab',
    'create_config_analysis_tab',
]