Skip to content

Latest commit

 

History

History
36 lines (30 loc) · 767 Bytes

ARCHITECTURE.md

File metadata and controls

36 lines (30 loc) · 767 Bytes
graph TD
    subgraph MAGE Plugin
        Core[MAGECore Module]
        Debug[MAGEDebug Module]
        Editor[MAGEEditor Module]
    end
    
    subgraph Game Feature Plugins
        Feature1[Combat Feature]
        Feature2[Inventory Feature]
        Feature3[Dialog Feature]
    end
    
    subgraph Runtime
        Subsystem[MAGE Subsystem]
        EntityMgr[Entity Manager]
        Systems[System Registry]
        Components[Component Registry]
    end
    
    Core --> Subsystem
    Debug --> Subsystem
    Editor --> Core
    
    Feature1 --> Core
    Feature2 --> Core
    Feature3 --> Core
    
    Subsystem --> EntityMgr
    Subsystem --> Systems
    Subsystem --> Components
    
    EntityMgr --> Components
    Systems --> Components
Loading