mirror of
https://github.com/GravitLauncher/Launcher
synced 2024-11-15 19:49:11 +03:00
14 lines
286 B
Java
14 lines
286 B
Java
package ru.gravit.launchserver.command;
|
|
|
|
import ru.gravit.launchserver.LaunchServer;
|
|
|
|
public abstract class Command extends ru.gravit.utils.command.Command {
|
|
|
|
|
|
protected final LaunchServer server;
|
|
|
|
|
|
protected Command(LaunchServer server) {
|
|
this.server = server;
|
|
}
|
|
}
|