Changes
Page history
game own package
authored
Sep 02, 2020
by
Nicolas Lenz
Show whitespace changes
Inline
Side-by-side
model/program-structure.md
View page @
768b4931
...
...
@@ -24,13 +24,16 @@ note left
end note
package game {
Game "1" --> "0..*" Action : actions
Bot "1" --> "0..*" Game : games
class Game {
id : Int
getState() : State
}
}
package action {
Game "1" --> "0..*" Action : actions
note as N2
Every player action that changes the game state
...
...
...
...