nesrust/uitlk/structure.plantuml

16 lines
323 B
Plaintext
Raw Permalink Normal View History

2025-03-01 12:15:32 -05:00
@startuml UIToolkit
abstract class UIComponent
class UIPanelComponent
class UITextComponent
class UIButtonComponent
UITextComponent --|> UIComponent
UIButtonComponent --|> UIComponent
UIButtonComponent --> UITextComponent : "text"
UIPanelComponent --|> UIComponent
UIPanelComponent --> UIComponent : "children"
@enduml