28 lines
545 B
Java
28 lines
545 B
Java
/*
|
|
* Decompiled with CFR 0.152.
|
|
*/
|
|
package net.minecraft.server;
|
|
|
|
import net.minecraft.server.ServerInfo;
|
|
import net.minecraft.server.dedicated.DedicatedServerProperties;
|
|
|
|
public interface ServerInterface
|
|
extends ServerInfo {
|
|
public DedicatedServerProperties getProperties();
|
|
|
|
public String getServerIp();
|
|
|
|
public int getServerPort();
|
|
|
|
public String getServerName();
|
|
|
|
public String[] getPlayerNames();
|
|
|
|
public String getLevelIdName();
|
|
|
|
public String getPluginNames();
|
|
|
|
public String runCommand(String var1);
|
|
}
|
|
|