This commit is contained in:
Daniel Mills
2020-11-01 10:14:50 -05:00
parent 7a7fee1d8a
commit cfc8458841
5 changed files with 43 additions and 15 deletions

View File

@@ -13,5 +13,10 @@ public abstract class GenLayer
this.rng = rng;
}
public GenLayer()
{
this(null, null);
}
public abstract double generate(double x, double z);
}