7 lines
92 B
Java
7 lines
92 B
Java
package mc.server.network;
|
|
|
|
public interface Server {
|
|
|
|
void bind(String host, int port);
|
|
}
|