Mirror von
https://github.com/PaperMC/Paper.git
synchronisiert 2024-12-20 13:30:05 +01:00
b00de5f176
Added newlines at the end of files Fixed improper line endings on some files Matched start - end comments Added some missing comments for diffs Fixed syntax on some spots Minimized some diff Removed some no longer used files Added comment on some required files with no changes Fixed imports of items used once Added imports for items used more than once
26 Zeilen
471 B
Java
26 Zeilen
471 B
Java
package net.minecraft.server;
|
|
|
|
import java.io.File;
|
|
import java.util.List;
|
|
|
|
public interface IDataManager {
|
|
|
|
WorldData getWorldData();
|
|
|
|
void checkSession();
|
|
|
|
IChunkLoader createChunkLoader(WorldProvider worldprovider);
|
|
|
|
void saveWorldData(WorldData worlddata, List list);
|
|
|
|
void saveWorldData(WorldData worlddata);
|
|
|
|
PlayerFileData getPlayerFileData();
|
|
|
|
void e();
|
|
|
|
File getDataFile(String s);
|
|
|
|
java.util.UUID getUUID(); // CraftBukkit
|
|
}
|