project: Mixins roof removal

This commit is contained in:
Owain van Brakel
2021-09-11 07:58:34 +02:00
parent 8ef5a07d87
commit ac64ab8955
3 changed files with 249 additions and 24 deletions

View File

@@ -243,6 +243,9 @@ public interface RSClient extends RSGameEngine, Client
@Import("combatTargetPlayerIndex")
void setLocalInteractingIndex(int idx);
@Import("Scene_tilesDeque")
RSNodeDeque getTilesDeque();
@Import("groundItems")
RSNodeDeque[][][] getGroundItemDeque();

View File

@@ -42,4 +42,7 @@ public interface RSNodeDeque
@Import("addFirst")
void addFirst(RSNode val);
@Import("removeLast")
RSNode removeLast();
}