Documentation of heuristics

This commit is contained in:
Anuken
2018-01-12 14:56:48 -05:00
parent 1156ead143
commit 5fc5d7ca77
2 changed files with 5 additions and 12 deletions

View File

@@ -27,7 +27,7 @@ public enum Difficulty {
public final float enemyScaling;
/**Multiplier of the time between waves.*/
public final float timeScaling;
/**Pathfdining heuristic for calculating tile costs.*/
public final Heuristic<Tile> heuristic;
Difficulty(float enemyScaling, float timeScaling, Heuristic<Tile> heuristic){