project: Add back this workaround for now
This commit is contained in:
@@ -1,6 +1,7 @@
|
||||
package net.runelite.rs.api;
|
||||
|
||||
import net.runelite.api.ItemComposition;
|
||||
import net.runelite.api.IterableHashTable;
|
||||
import net.runelite.mapping.Import;
|
||||
|
||||
public interface RSItemComposition extends ItemComposition
|
||||
@@ -88,6 +89,9 @@ public interface RSItemComposition extends ItemComposition
|
||||
@Import("params")
|
||||
RSIterableNodeHashTable getParams();
|
||||
|
||||
@Import("params")
|
||||
void setParams(IterableHashTable params);
|
||||
|
||||
@Import("params")
|
||||
void setParams(RSIterableNodeHashTable params);
|
||||
}
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
package net.runelite.rs.api;
|
||||
|
||||
import net.runelite.api.IterableHashTable;
|
||||
import net.runelite.api.NPCComposition;
|
||||
import net.runelite.mapping.Import;
|
||||
|
||||
@@ -63,6 +64,9 @@ public interface RSNPCComposition extends NPCComposition
|
||||
@Import("params")
|
||||
RSIterableNodeHashTable getParams();
|
||||
|
||||
@Import("params")
|
||||
void setParams(IterableHashTable params);
|
||||
|
||||
@Import("params")
|
||||
void setParams(RSIterableNodeHashTable params);
|
||||
}
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
package net.runelite.rs.api;
|
||||
|
||||
import net.runelite.api.IterableHashTable;
|
||||
import net.runelite.api.ObjectComposition;
|
||||
import net.runelite.mapping.Import;
|
||||
|
||||
@@ -39,6 +40,9 @@ public interface RSObjectComposition extends ObjectComposition
|
||||
@Import("params")
|
||||
RSIterableNodeHashTable getParams();
|
||||
|
||||
@Import("params")
|
||||
void setParams(IterableHashTable params);
|
||||
|
||||
@Import("params")
|
||||
void setParams(RSIterableNodeHashTable params);
|
||||
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
package net.runelite.rs.api;
|
||||
|
||||
import net.runelite.api.IterableHashTable;
|
||||
import net.runelite.api.StructComposition;
|
||||
import net.runelite.mapping.Import;
|
||||
|
||||
@@ -11,6 +12,9 @@ public interface RSStructComposition extends StructComposition
|
||||
@Import("params")
|
||||
RSIterableNodeHashTable getParams();
|
||||
|
||||
@Import("params")
|
||||
void setParams(IterableHashTable params);
|
||||
|
||||
@Import("params")
|
||||
void setParams(RSIterableNodeHashTable params);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user