9
0
mirror of https://github.com/VolmitSoftware/Iris.git synced 2025-12-27 02:59:06 +00:00

Deobf dbits

This commit is contained in:
cyberpwn
2021-08-25 02:41:24 -04:00
parent 9b3013c51a
commit c1ba176e27

View File

@@ -24,17 +24,17 @@ import com.volmit.iris.util.nbt.tag.ListTag;
import java.util.function.Predicate;
public interface DataPalette<T> {
int a(T var1);
int getIndex(T var1);
boolean a(Predicate<T> var1);
T a(int var1);
T getByIndex(int var1);
int a();
int b();
void a(ListTag<CompoundTag> t);
void replace(ListTag<CompoundTag> t);
ListTag<CompoundTag> getPalette();
}