16 lines
323 B
Plaintext
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
|