Files
runelite/runescape-api/src/main/java/net/runelite/rs/api/RSNodeDeque.java
Lucwousin a3667f10e3 deathindicator: add permabones (#1829)
* Add api support for faking ground items and add permabones

* Remove unused method

* fixed loading/keeping loaded, fixed calendar thingy, probably forgot something

* Actually commit the calendar tsuff
2019-10-26 15:31:00 -04:00

22 lines
309 B
Java

package net.runelite.rs.api;
import net.runelite.mapping.Import;
public interface RSNodeDeque
{
@Import("current")
RSNode getCurrent();
@Import("sentinel")
RSNode getHead();
@Import("last")
RSNode last();
@Import("previous")
RSNode previous();
@Import("addFirst")
void addFirst(RSNode val);
}