Mirror von
https://github.com/PaperMC/Paper.git
synchronisiert 2024-12-20 05:20:07 +01:00
27 Zeilen
562 B
Java
27 Zeilen
562 B
Java
package net.minecraft.server;
|
|
|
|
import java.io.File;
|
|
|
|
public interface IDataManager {
|
|
|
|
WorldData getWorldData();
|
|
|
|
void checkSession() throws ExceptionWorldConflict; // CraftBukkit - throws ExceptionWorldConflict
|
|
|
|
IChunkLoader createChunkLoader(WorldProvider worldprovider);
|
|
|
|
void saveWorldData(WorldData worlddata, NBTTagCompound nbttagcompound);
|
|
|
|
void saveWorldData(WorldData worlddata);
|
|
|
|
PlayerFileData getPlayerFileData();
|
|
|
|
void a();
|
|
|
|
File getDataFile(String s);
|
|
|
|
String g();
|
|
|
|
java.util.UUID getUUID(); // CraftBukkit
|
|
}
|