11 lines
341 B
Plaintext
11 lines
341 B
Plaintext
@startuml
|
|
class MoveBlockCommand {
|
|
+ MoveBlockCommand(blockId:string, previousPosition:Vector3, newPosition:Vector3, previousRotation:Quaternion, newRotation:Quaternion)
|
|
+ MoveBlockCommand(commandDTO:CommandDTO)
|
|
+ execute() : void
|
|
+ undo() : void
|
|
+ toDTO() : CommandDTO
|
|
}
|
|
ICommand <|-- MoveBlockCommand
|
|
@enduml
|