Newer
Older
void-pack-super-server / work / decompile-ee3ecae0 / net / minecraft / server / ResourcePackInfo.java
Simon Lindgren on 26 Mar 2020 481 bytes first commit
package net.minecraft.server;

public class ResourcePackInfo {

    public static final ResourcePackInfoDeserializer a = new ResourcePackInfoDeserializer();
    private final IChatBaseComponent b;
    private final int c;

    public ResourcePackInfo(IChatBaseComponent ichatbasecomponent, int i) {
        this.b = ichatbasecomponent;
        this.c = i;
    }

    public IChatBaseComponent a() {
        return this.b;
    }

    public int b() {
        return this.c;
    }
}