Launcher/LaunchServer/src/main/java/ru/gravit/launchserver/command/Command.java

15 lines
286 B
Java
Raw Normal View History

2018-09-17 10:07:32 +03:00
package ru.gravit.launchserver.command;
import ru.gravit.launchserver.LaunchServer;
2019-01-15 06:35:39 +03:00
public abstract class Command extends ru.gravit.utils.command.Command {
2018-09-17 10:07:32 +03:00
2018-10-13 11:01:10 +03:00
2018-09-17 10:07:32 +03:00
protected final LaunchServer server;
2018-10-13 11:01:10 +03:00
2018-09-17 10:07:32 +03:00
protected Command(LaunchServer server) {
this.server = server;
}
}