aboutsummaryrefslogtreecommitdiff
path: root/src/docs
diff options
context:
space:
mode:
Diffstat (limited to 'src/docs')
-rw-r--r--src/docs/class.puml13
1 files changed, 6 insertions, 7 deletions
diff --git a/src/docs/class.puml b/src/docs/class.puml
index 151e334..779f764 100644
--- a/src/docs/class.puml
+++ b/src/docs/class.puml
@@ -7,13 +7,6 @@ skinparam backgroundColor #FFFFFF
7class Main{ 7class Main{
8 static void main(String[]) 8 static void main(String[])
9} 9}
10package utils {
11 class Matrix {
12 static int getWidth(...)
13 static int getHeight(...)
14 static boolean isShapeValid(...)
15 }
16}
17 10
18package viewer { 11package viewer {
19 class Viewer { 12 class Viewer {
@@ -146,6 +139,12 @@ package board {
146 List<TileVec2> neighbors() 139 List<TileVec2> neighbors()
147 } 140 }
148 141
142 class Matrix {
143 static int getWidth(...)
144 static int getHeight(...)
145 static boolean isShapeValid(...)
146 }
147
149 class PathFinder { 148 class PathFinder {
150 PathFinder(Board) 149 PathFinder(Board)
151 List<TileVec2> findPath(TileVec2 origin, TileVec2 target) 150 List<TileVec2> findPath(TileVec2 origin, TileVec2 target)