Skip to content

Commit

Permalink
Made variables public to allow for serializing
Browse files Browse the repository at this point in the history
  • Loading branch information
BambooBandit committed Jul 23, 2021
1 parent 1a1cc03 commit a304103
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/main/java/com/dongbat/walkable/PathHelper.java
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,12 @@
* @author tao
*/
public class PathHelper {
private final Mesh mesh;
private final EntityAI entity;
private final PathFinder pathFinder;
private final Array path;
private final List<Obstacle> obstacles = new ArrayList<Obstacle>();
private int scale;
public final Mesh mesh;
public final EntityAI entity;
public final PathFinder pathFinder;
public final Array path;
public final List<Obstacle> obstacles = new ArrayList<Obstacle>();
public int scale;

/**
* Constructs a PathFinder with the given world width and world height
Expand Down

0 comments on commit a304103

Please sign in to comment.