api: add method to remove MessageNodes

Co-authored-by: trimbe <benno.tremback@gmail.com>
This commit is contained in:
Adam
2019-03-02 18:58:40 -05:00
parent c44d8a96b7
commit 24003c69a7
4 changed files with 86 additions and 0 deletions

View File

@@ -24,6 +24,10 @@
*/
package net.runelite.rs.api;
import net.runelite.mapping.Import;
public interface RSCacheableNode extends RSNode
{
@Import("unlinkDual")
void unlinkDual();
}

View File

@@ -39,4 +39,7 @@ public interface RSChatLineBuffer extends ChatLineBuffer
@Import("length")
@Override
int getLength();
@Import("length")
void setLength(int length);
}