Implemented currentPort

This commit is contained in:
Jonatino
2021-03-21 15:56:20 -04:00
parent ecd6483fcc
commit 050f399cdf
3 changed files with 18 additions and 2 deletions

View File

@@ -13,4 +13,6 @@ public interface DynamicObject extends Renderable
* Get the number of cycles that have elapsed in the whole animation.
*/
int getAnimCycleCount();
}
int getCurrentPort();
}

View File

@@ -0,0 +1,8 @@
package net.runelite.mixins.rsps;
public class IPAddressMixin {
//MouseRecorder.worldPort
//class171.js5Port
//DynamicObject.currentPort
}

View File

@@ -20,4 +20,10 @@ public interface RSDynamicObject extends RSRenderable, DynamicObject, Renderable
@Import("sequenceDefinition")
RSSequenceDefinition getSequenceDefinition();
}
@Import("currentPort")
int getCurrentPort();
@Import("currentPort")
void setCurrentPort();
}