diff options
| author | Mikkel <mithe24@student.sdu.dk> | 2025-04-08 11:17:49 +0200 |
|---|---|---|
| committer | mithe24 <mithe24@student.sdu.dk> | 2025-04-29 18:21:28 +0200 |
| commit | 6687af6f7c7d5d4524fadad1129d50040293e05c (patch) | |
| tree | e8437cfea3a526c2162cabc4c34f7d069e107068 /uml | |
| download | pacman-6687af6f7c7d5d4524fadad1129d50040293e05c.tar.gz pacman-6687af6f7c7d5d4524fadad1129d50040293e05c.zip | |
Initial commit
squashed all previous commits to one.
Diffstat (limited to '')
| -rw-r--r-- | uml/overall-class-diagram.png | bin | 0 -> 18733 bytes | |||
| -rw-r--r-- | uml/overall-class-diagram.puml | 33 |
2 files changed, 33 insertions, 0 deletions
diff --git a/uml/overall-class-diagram.png b/uml/overall-class-diagram.png Binary files differnew file mode 100644 index 0000000..8d53996 --- /dev/null +++ b/uml/overall-class-diagram.png diff --git a/uml/overall-class-diagram.puml b/uml/overall-class-diagram.puml new file mode 100644 index 0000000..f203f0b --- /dev/null +++ b/uml/overall-class-diagram.puml @@ -0,0 +1,33 @@ +@startuml +top to bottom direction + +class PacmanGame <<Model>> { + - gameLogic +} + +class PacmanController <<Controller>> { + - PacmanView + - PacmanGame + -- + - setupEventHandlers() +} + +class PacmanView <<View>> { + - uiElements +} + +class GameApp { + - PacmanView + - PacmanController + -- + + Main() +} + +PacmanController -[hidden]> PacmanView +GameApp o-- PacmanView +GameApp o-- PacmanController +PacmanController o-- PacmanView +PacmanController o-- PacmanGame + +@enduml + |