Skip to content

Commit

Permalink
Add javadoc
Browse files Browse the repository at this point in the history
  • Loading branch information
nab138 committed Feb 28, 2024
1 parent a5be7c3 commit 7e04551
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Pathfinding/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ plugins {
}

group 'me.nabdev.pathfinding'
version '0.9.20'
version '0.9.21'

java {
withSourcesJar()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
import me.nabdev.pathfinding.algorithms.Astar;
import me.nabdev.pathfinding.algorithms.SearchAlgorithm;
import me.nabdev.pathfinding.algorithms.SearchAlgorithm.SearchAlgorithmType;
import me.nabdev.pathfinding.modifiers.ObstacleModifier.ObstacleModifierTypes;
import me.nabdev.pathfinding.structures.Edge;
import me.nabdev.pathfinding.structures.ImpossiblePathException;
import me.nabdev.pathfinding.structures.Map;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
package me.nabdev.pathfinding.modifiers;

/**
* Marks the obstacle as a zone. This means it will not invalidate obstacle
* points and start points will not snap outside of it.
*/
public class ZoneModifier extends ObstacleModifier {
@Override
public boolean isActive() {
Expand Down

0 comments on commit 7e04551

Please sign in to comment.