Files
JuegoSim/-o/CommandLayer/Commands/DeleteBlockCommand.puml
T
2026-07-21 08:56:10 +03:00

17 lines
447 B
Plaintext

@startuml
class DeleteBlockCommand {
- blockId : string
- prefabDeletedId : string
- blockInitialPosition : Vector3
- blockInitialRotation : Quaternion
- factory : BlockFactory
- environment : Environment
+ DeleteBlockCommand(blockId:string)
+ DeleteBlockCommand(commandDTO:CommandDTO)
+ execute() : void
+ undo() : void
+ toDTO() : CommandDTO
}
ICommand <|-- DeleteBlockCommand
@enduml