aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/docs/class.puml6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/docs/class.puml b/src/docs/class.puml
index 6257ae8..21add0d 100644
--- a/src/docs/class.puml
+++ b/src/docs/class.puml
@@ -6,6 +6,12 @@ package utils {
6 class PathFinder { 6 class PathFinder {
7 static List<Vec2> findPath(Board, TileVec2, TileVec2) 7 static List<Vec2> findPath(Board, TileVec2, TileVec2)
8 } 8 }
9
10 class Matrix {
11 static int getWidth(...)
12 static int getHeight(...)
13 static boolean isShapeValid(...)
14 }
9} 15}
10 16
11package viewer { 17package viewer {