Archived
0

Удяляем все модули, кроме core

This commit is contained in:
2019-01-29 12:02:11 +03:00
parent ed51174b4d
commit 9826df5d5b
117 changed files with 6 additions and 6868 deletions

View File

@@ -1,4 +1,4 @@
version '1.0-SNAPSHOT'
version '0.1'
apply plugin: 'maven'
apply plugin: 'application'

View File

@@ -1,15 +1,15 @@
/*
* DmitriyMX <dimon550@gmail.com>
* 2018-06-29
*/
package mc.core.embedded;
import lombok.extern.slf4j.Slf4j;
import mc.core.network.Server;
import mc.core.network.StartServerException;
@Slf4j
public class FakeServer implements Server {
@Override
public void start() throws StartServerException {
public void start() {
log.info("Hello. I'm FakeServer. And i do nothing.");
}
@Override