Files
AntiVPN/Common/src/main/java/dev/brighten/antivpn/utils/Tuple.java
T
funkemunky 3f6bb4a0e6 Refactor, code cleanup, sponge impl.
BungeeCord still has problems, bad API, not my fault technically. still need to fix though
2025-05-27 13:13:53 -04:00

6 lines
87 B
Java

package dev.brighten.antivpn.utils;
public record Tuple<F, S>(F first, S second) {
}