From f11d73b61282ca6a2f2574e7ad3d7d46f9ca1f52 Mon Sep 17 00:00:00 2001 From: pacien Date: Sun, 14 Jan 2018 00:51:13 +0100 Subject: Implement path finder Signed-off-by: pacien --- src/docs/class.puml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/docs') 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 @@ skinparam linetype ortho package utils { - class PathFinder { - static List findPath(Board, TileVec2, TileVec2) - } - class Matrix { static int getWidth(...) static int getHeight(...) @@ -116,6 +112,10 @@ package board { TileVec2(col, row) Vec2 toPixelPos() } + + class PathFinder { + static List findPath(Board, TileVec2, TileVec2) + } } package model { -- cgit v1.2.3