Narrow down onVolumeChanged to only volume changed's

This commit is contained in:
Lucwousin
2019-10-24 10:10:08 +02:00
parent 45c0774093
commit 6a8fbf9868
6 changed files with 31 additions and 7 deletions

View File

@@ -1117,4 +1117,7 @@ public interface RSClient extends RSGameShell, Client
*/
@Import("Login_promptCredentials")
void promptCredentials(boolean clearPass);
@Import("VarpDefinition_get")
RSVarpDefinition getVarpDefinition(int id);
}

View File

@@ -0,0 +1,9 @@
package net.runelite.rs.api;
import net.runelite.mapping.Import;
public interface RSVarpDefinition extends RSDualNode
{
@Import("type")
int getType();
}