aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAdam NAILI2018-01-14 23:22:44 +0100
committerAdam NAILI2018-01-14 23:22:44 +0100
commit9e634b7422058bded1144356f2c96b26a2eafa0f (patch)
tree78477218a79f37f44b250ef918165dd503146ea6 /src
parentfab2b0e7ae38789f49c5f73d24c993a4e997e1db (diff)
downloadwallj-9e634b7422058bded1144356f2c96b26a2eafa0f.tar.gz
Updating UML diagram
Diffstat (limited to 'src')
-rw-r--r--src/docs/class.puml6
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
3skinparam linetype ortho 3skinparam linetype ortho
4 4
5class Main{
6 static void main(String[])
7}
5package utils { 8package 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
235PhysicsController --() JBox2D 237PhysicsController --() JBox2D
236Zen5 ()-- Viewer 238Zen5 ()-- Viewer
239Zen5 ()-- Main
240Main --> viewer
237 241
238viewer --> context 242viewer --> context
239viewer --> block 243viewer --> block