Launcher/libLauncher/src/main/java/ru/gravit/launcher/events/PingEvent.java
2018-11-08 19:30:16 +07:00

17 lines
439 B
Java
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package ru.gravit.launcher.events;
import ru.gravit.utils.event.EventInterface;
import java.util.UUID;
//Пустое событие
//Все обработчики обязаны его игнорировать
public final class PingEvent implements EventInterface {
private static final UUID uuid = UUID.fromString("7c8be7e7-82ce-4c99-84cd-ee8fcce1b509");
@Override
public UUID getUUID() {
return uuid;
}
}