Files
JuegoSim/-o/InteractionLayer/Managers/UIManager.puml
T
2026-07-21 08:56:10 +03:00

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