wip: refactoring with persistent storage containers

This commit is contained in:
2024-10-10 22:08:48 +02:00
parent 9c68308eeb
commit 4bda427693
9 changed files with 140 additions and 91 deletions

View File

@@ -27,10 +27,10 @@ public final class Main extends JavaPlugin {
public static List<PixelBlock> pixelBlocks = new ArrayList<>();
public static <T> TaskChain<T> newChain() {
public static <T> TaskChain<T> chain() {
return taskFactory.newChain();
}
public static <T> TaskChain<T> newSharedChain(String name) {
public static <T> TaskChain<T> sharedChain(String name) {
return taskFactory.newSharedChain(name);
}