nesrust/uitlk/structure.plantuml
2025-03-01 12:15:32 -05:00

16 lines
323 B
Plaintext

@startuml UIToolkit
abstract class UIComponent
class UIPanelComponent
class UITextComponent
class UIButtonComponent
UITextComponent --|> UIComponent
UIButtonComponent --|> UIComponent
UIButtonComponent --> UITextComponent : "text"
UIPanelComponent --|> UIComponent
UIPanelComponent --> UIComponent : "children"
@enduml