aboutsummaryrefslogtreecommitdiff
path: root/src/docs
diff options
context:
space:
mode:
authorAdam NAILI2018-01-09 01:36:43 +0100
committerAdam NAILI2018-01-09 01:36:43 +0100
commit4bf5d236f8e0a677643fd551dc605753d3646309 (patch)
tree771ad03a98cce54594d29f9cf049406dc26ef08d /src/docs
parent0c03018b37bceb81bcefcd89288e9baaea64a2c2 (diff)
parent1c20a597c4d0beab47b7c639344fb8260d5f69a1 (diff)
downloadwallj-4bf5d236f8e0a677643fd551dc605753d3646309.tar.gz
Merge branch 'master' of https://github.com/pacien/upem-java-wallj
Diffstat (limited to 'src/docs')
-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 {