Files
2026-07-21 08:56:10 +03:00

11 lines
259 B
Plaintext

@startuml
class CommandManager {
+ {static} getInstance() : CommandManager
+ setMaxCapacity(capacity:int) : void
+ executeCommand(command:ICommand) : void
+ undo() : void
+ redo() : ICommand
+ clearHistory() : void
}
@enduml