game own package authored by Nicolas Lenz's avatar Nicolas Lenz
......@@ -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
......
......