1
0

First commit

This commit is contained in:
d1novnowo_
2021-05-16 10:42:40 +07:00
commit 5d7a246771
95 changed files with 6861 additions and 0 deletions

View File

@ -0,0 +1,28 @@
package mineplex.serverdata.commands;
import java.util.UUID;
import com.google.gson.JsonObject;
public class RemovePunishCommand extends ServerCommand
{
private final JsonObject _punishment;
private final String _target;
private final String _admin;
private final String _adminUUID;
private final String _reason;
public RemovePunishCommand(JsonObject punishment, String target, String admin, UUID adminUUID, String reason)
{
_punishment = punishment;
_target = target;
_admin = admin;
_adminUUID = adminUUID.toString();
_reason = reason;
}
@Override
public void run()
{
}
}