injector: pass array store index to field hook too

This commit is contained in:
Adam
2017-01-30 14:36:21 -05:00
parent 7124598a22
commit fbff8ab9e9
2 changed files with 17 additions and 2 deletions

View File

@@ -27,5 +27,16 @@ package net.runelite.client.events;
public class ExperienceChanged
{
/** the index in the array which changed */
private int index;
public int getIndex()
{
return index;
}
public void setIndex(int index)
{
this.index = index;
}
}