Skip to content

Instantly share code, notes, and snippets.

@amirmv2006
Created December 5, 2021 13:12
Show Gist options
  • Save amirmv2006/e90da71e8f8687f4e81a0d9e2fdda498 to your computer and use it in GitHub Desktop.
Save amirmv2006/e90da71e8f8687f4e81a0d9e2fdda498 to your computer and use it in GitHub Desktop.
Human Playing vs Computer
@startuml
'https://plantuml.com/sequence-diagram
participant Joystick
participant Robot
participant GameService
autonumber
EventBus --> Robot: CurrentTurnFinishedEvent
Robot -> GameService: Play
Joystick -> GameService: Play
GameService -> EventBus: CurrentTurnFinishedEvent
EventBus --> Joystick: CurrentTurnFinishedEvent
EventBus --> Robot: CurrentTurnFinishedEvent
@enduml
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment