diff options
author | Adam NAILI | 2018-01-14 23:22:44 +0100 |
---|---|---|
committer | Adam NAILI | 2018-01-14 23:22:44 +0100 |
commit | 9e634b7422058bded1144356f2c96b26a2eafa0f (patch) | |
tree | 78477218a79f37f44b250ef918165dd503146ea6 /src/docs | |
parent | fab2b0e7ae38789f49c5f73d24c993a4e997e1db (diff) | |
download | wallj-9e634b7422058bded1144356f2c96b26a2eafa0f.tar.gz |
Updating UML diagram
Diffstat (limited to 'src/docs')
-rw-r--r-- | src/docs/class.puml | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/docs/class.puml b/src/docs/class.puml index 81cb7c8..dbfb731 100644 --- a/src/docs/class.puml +++ b/src/docs/class.puml | |||
@@ -2,6 +2,9 @@ | |||
2 | 2 | ||
3 | skinparam linetype ortho | 3 | skinparam linetype ortho |
4 | 4 | ||
5 | class Main{ | ||
6 | static void main(String[]) | ||
7 | } | ||
5 | package utils { | 8 | package utils { |
6 | class Matrix { | 9 | class Matrix { |
7 | static int getWidth(...) | 10 | static int getWidth(...) |
@@ -14,7 +17,6 @@ package viewer { | |||
14 | class Viewer { | 17 | class Viewer { |
15 | final Game | 18 | final Game |
16 | Viewer(List<Board>) | 19 | Viewer(List<Board>) |
17 | void main(String[]) | ||
18 | void eventLoop(ApplicationContext) | 20 | void eventLoop(ApplicationContext) |
19 | void renderFrame(Graphics2D,ApplicationContext,List<Event>) | 21 | void renderFrame(Graphics2D,ApplicationContext,List<Event>) |
20 | } | 22 | } |
@@ -234,6 +236,8 @@ Stage --> BoardConverter | |||
234 | 236 | ||
235 | PhysicsController --() JBox2D | 237 | PhysicsController --() JBox2D |
236 | Zen5 ()-- Viewer | 238 | Zen5 ()-- Viewer |
239 | Zen5 ()-- Main | ||
240 | Main --> viewer | ||
237 | 241 | ||
238 | viewer --> context | 242 | viewer --> context |
239 | viewer --> block | 243 | viewer --> block |