com.github.alex1304.jdash.client.AbstractAuthenticatedGDRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jdash Show documentation
Show all versions of jdash Show documentation
A Java library for the Geometry Dash API
package com.github.alex1304.jdash.client;
import java.util.Objects;
abstract class AbstractAuthenticatedGDRequest extends AbstractGDRequest {
final AuthenticatedGDClient client;
AbstractAuthenticatedGDRequest(AuthenticatedGDClient client) {
super(client);
this.client = Objects.requireNonNull(client);
}
}