aboutsummaryrefslogtreecommitdiff
path: root/src/docs/class.puml
diff options
context:
space:
mode:
authorAdam NAILI2018-01-14 15:22:08 +0100
committerAdam NAILI2018-01-14 15:22:08 +0100
commitb81db47a693f69f522ad0e31fd2354bed1d2ea00 (patch)
tree37bf40df2728216d4263d1b9825a5069568627d3 /src/docs/class.puml
parentc639cf1a706f46372acef471eecd652153ac76be (diff)
parentc9c4f27367039c315c6137cbea1099df3716206f (diff)
downloadwallj-b81db47a693f69f522ad0e31fd2354bed1d2ea00.tar.gz
Merge branch 'master' of https://github.com/pacien/upem-java-wallj
Diffstat (limited to 'src/docs/class.puml')
-rw-r--r--src/docs/class.puml8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/docs/class.puml b/src/docs/class.puml
index 50e55fb..6a527ae 100644
--- a/src/docs/class.puml
+++ b/src/docs/class.puml
@@ -3,10 +3,6 @@
3skinparam linetype ortho 3skinparam linetype ortho
4 4
5package utils { 5package utils {
6 class PathFinder {
7 static List<Vec2> findPath(Board, TileVec2, TileVec2)
8 }
9
10 class Matrix { 6 class Matrix {
11 static int getWidth(...) 7 static int getWidth(...)
12 static int getHeight(...) 8 static int getHeight(...)
@@ -129,6 +125,10 @@ package board {
129 TileVec2(col, row) 125 TileVec2(col, row)
130 Vec2 toPixelPos() 126 Vec2 toPixelPos()
131 } 127 }
128
129 class PathFinder {
130 static List<TileVec2> findPath(Board, TileVec2, TileVec2)
131 }
132} 132}
133 133
134package model { 134package model {