Start of dungeon work, custom item/mobs/gates not needed, gate and dungeons wil be made automatically.
This commit is contained in:
unurled 2022-04-05 22:11:30 +02:00
parent ce3c1d547c
commit 10c66d6fa4
13 changed files with 231 additions and 70 deletions

View file

@ -0,0 +1,11 @@
package gq.unurled.raxen.manager.server;
import gq.unurled.raxen.components.dungeons.Gate;
import java.util.HashMap;
import java.util.UUID;
public class DungeonsManager {
private HashMap<UUID, Gate> gates = new HashMap<>();
}