ru.whoisamyy.api.plugins.events.RateLevelDemonEvent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of core Show documentation
Show all versions of core Show documentation
Geometry Dash kernel in java
package ru.whoisamyy.api.plugins.events;
import ru.whoisamyy.core.endpoints.RequestManager;
import java.lang.reflect.Method;
import java.lang.reflect.Parameter;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
public class RateLevelDemonEvent extends Event {
@Override
void init() {
try {
Method m = RequestManager.Levels.class.getMethod("rateGJDemon", Integer.class, Integer.class, Integer.class, String.class, String.class);
List> at = new ArrayList<>(List.of(m.getParameterTypes()));
at.add(m.getReturnType());
allowedTypes = at;
Parameter[] params= m.getParameters();
List strings = new ArrayList<>();
Arrays.stream(params).forEach(x->strings.add(x.getName()));
parameterNames = new ArrayList<>(strings);
} catch (NoSuchMethodException e) {
throw new RuntimeException(e);
}
}
public RateLevelDemonEvent(Object... parameterValues) throws NoSuchFieldException {
super(parameterValues);
}
}