public TreeGeneratorsUtil(ICoreServerAPI api)
 {
     sapi = api;
     forestFloorSystem = new ForestFloorSystem(api);
 }
Beispiel #2
0
 public TreeGen(TreeGenConfig config, int seed, ForestFloorSystem ffs)
 {
     this.config      = config;
     this.forestFloor = ffs;
     lcgrandTL        = new ThreadLocal <LCGRandom>(() => new LCGRandom(seed));
 }