20 lines
430 B
Java
20 lines
430 B
Java
package com.dairymoose.inventory.container;
|
|
|
|
import net.minecraft.world.inventory.DataSlot;
|
|
|
|
/* loaded from: outputsrg.jar:com/dairymoose/inventory/container/IncrementingDataHolder.class */
|
|
public class IncrementingDataHolder extends DataSlot {
|
|
|
|
/* renamed from: x */
|
|
int f0x = 0;
|
|
|
|
public int get() {
|
|
int i = this.f0x;
|
|
this.f0x = i + 1;
|
|
return i;
|
|
}
|
|
|
|
public void set(int arg0) {
|
|
}
|
|
}
|