Add messagenode

This commit is contained in:
Adam
2016-03-20 17:26:51 -04:00
parent 02f95546cc
commit d33d5725fd

View File

@@ -0,0 +1,15 @@
package net.runelite.rs.api;
import net.runelite.mapping.Import;
public interface MessageNode
{
@Import("type")
int getType();
@Import("sender")
String getSender();
@Import("value")
String getValue();
}