15 lines
454 B
Plaintext
15 lines
454 B
Plaintext
@startuml
|
|
class UIManager {
|
|
- {static} instance : UIManager
|
|
- currentSelectedUIInteractable : UIInteractable
|
|
- currentSelectedData : BlockData
|
|
+ onSelectEvent : UnityEvent<BlockData>
|
|
- currentCategory : CategoryData
|
|
- Awake() : void
|
|
+ {static} getInstance() : UIManager
|
|
+ selectUIInteractable(uiInteractable:UIInteractable) : void
|
|
+ deselectUIInteractable() : void
|
|
}
|
|
MonoBehaviour <|-- UIManager
|
|
@enduml
|