mirror of
https://github.com/GravitLauncher/Launcher
synced 2025-04-19 14:33:04 +03:00
8 lines
171 B
Java
8 lines
171 B
Java
package ru.gravit.utils.event;
|
|
|
|
import java.util.UUID;
|
|
|
|
@FunctionalInterface
|
|
public interface EventHandler<T extends EventInterface> {
|
|
void run(UUID uuid, T event);
|
|
}
|