* 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
22 lines
309 B
Java
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);
|
|
}
|