12 lines
243 B
Java
12 lines
243 B
Java
/*
|
|
* Decompiled with CFR 0.152.
|
|
*/
|
|
package net.minecraft.server.jsonrpc.methods;
|
|
|
|
public record ClientInfo(Integer connectionId) {
|
|
public static ClientInfo of(Integer connectionId) {
|
|
return new ClientInfo(connectionId);
|
|
}
|
|
}
|
|
|