add these things

This commit is contained in:
Ra
2025-09-12 04:27:36 -07:00
parent 148257661f
commit 6d6b4823e1
110 changed files with 10704 additions and 4716 deletions

View File

@@ -0,0 +1,19 @@
package net.runelite.api;
/**
* RuneLite Client compatibility stub.
* This is a simplified version for the modernized client.
*/
public interface Client {
// Basic client methods that might be called
default Object[] getNpcs() { return new Object[0]; }
default Object getLocalPlayer() { return null; }
default Object getInventory() { return null; }
default Object getEquipment() { return null; }
default Object getGameState() { return null; }
default int getTickCount() { return 0; }
// Placeholder methods - to be implemented as needed
default void addChatMessage(int type, String name, String message, String sender) {}
default void addGameMessage(String message) {}
}