aboutsummaryrefslogtreecommitdiff
path: root/src/docs/class.puml
diff options
context:
space:
mode:
authorpacien2018-01-14 00:51:13 +0100
committerpacien2018-01-14 00:51:13 +0100
commitf11d73b61282ca6a2f2574e7ad3d7d46f9ca1f52 (patch)
tree2bd19ae7d91dbfe0e3b5c7384f2b9b02433f98f0 /src/docs/class.puml
parent52a87e1d9ffb0b1a0ed45e3af71b0ccc9c05142a (diff)
downloadwallj-f11d73b61282ca6a2f2574e7ad3d7d46f9ca1f52.tar.gz
Implement path finder
Signed-off-by: pacien <pacien.trangirard@pacien.net>
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 68aaf5e..869a707 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(...)
@@ -116,6 +112,10 @@ package board {
116 TileVec2(col, row) 112 TileVec2(col, row)
117 Vec2 toPixelPos() 113 Vec2 toPixelPos()
118 } 114 }
115
116 class PathFinder {
117 static List<TileVec2> findPath(Board, TileVec2, TileVec2)
118 }
119} 119}
120 120
121package model { 121package model {