diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/docs/class.puml | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/docs/class.puml b/src/docs/class.puml index f4766db..30d50f2 100644 --- a/src/docs/class.puml +++ b/src/docs/class.puml | |||
@@ -20,6 +20,7 @@ package utils { | |||
20 | package viewer { | 20 | package viewer { |
21 | class Viewer { | 21 | class Viewer { |
22 | Game | 22 | Game |
23 | Stage | ||
23 | void main(String[]) | 24 | void main(String[]) |
24 | void eventLoop(ApplicationContext) | 25 | void eventLoop(ApplicationContext) |
25 | void renderFrame(Graphics2D) | 26 | void renderFrame(Graphics2D) |
@@ -55,8 +56,8 @@ package context { | |||
55 | 56 | ||
56 | class Game { | 57 | class Game { |
57 | final GameController | 58 | final GameController |
58 | Stage | 59 | final List<Board> |
59 | Game(GameController,Stage,List<Board>) | 60 | Game(GameController,List<Board>,List<Board>) |
60 | } | 61 | } |
61 | } | 62 | } |
62 | 63 | ||