aboutsummaryrefslogtreecommitdiff
path: root/src/docs
diff options
context:
space:
mode:
Diffstat (limited to 'src/docs')
-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 {