Shutdown engine threads properly

This commit is contained in:
Daniel Mills 2021-07-20 13:48:34 -04:00
parent 7e36cb76ba
commit 66d3eb3400

View File

@ -51,4 +51,8 @@ public class EngineTarget {
public EngineTarget(IrisWorld world, IrisDimension dimension, IrisDataManager data, int height, int threads) {
this(world, dimension, data, height, false, threads);
}
public void close() {
burster.shutdownAndAwait();
}
}