whole bunch of refactoring client
This commit is contained in:
@@ -1,3 +1,16 @@
|
||||
package net.runelite.rs.api;
|
||||
|
||||
public interface RSAccessFile {}
|
||||
import java.io.RandomAccessFile;
|
||||
import net.runelite.mapping.Import;
|
||||
|
||||
public interface RSAccessFile
|
||||
{
|
||||
@Import("file")
|
||||
RandomAccessFile getFile();
|
||||
|
||||
@Import("offset")
|
||||
long getPosition();
|
||||
|
||||
@Import("maxSize")
|
||||
long getLength();
|
||||
}
|
||||
|
||||
@@ -0,0 +1,3 @@
|
||||
package net.runelite.rs.api;
|
||||
|
||||
public interface RSApproximateRouteStrategy {}
|
||||
@@ -1,16 +0,0 @@
|
||||
package net.runelite.rs.api;
|
||||
|
||||
import java.io.RandomAccessFile;
|
||||
import net.runelite.mapping.Import;
|
||||
|
||||
public interface RSFileOnDisk
|
||||
{
|
||||
@Import("file")
|
||||
RandomAccessFile getFile();
|
||||
|
||||
@Import("index")
|
||||
long getPosition();
|
||||
|
||||
@Import("capacity")
|
||||
long getLength();
|
||||
}
|
||||
@@ -0,0 +1,4 @@
|
||||
package net.runelite.rs.api;
|
||||
|
||||
public interface RSGameBuild
|
||||
{}
|
||||
@@ -0,0 +1,3 @@
|
||||
package net.runelite.rs.api;
|
||||
|
||||
public interface RSModeWhere {}
|
||||
@@ -0,0 +1,3 @@
|
||||
package net.runelite.rs.api;
|
||||
|
||||
public interface RSPlayerProvider {}
|
||||
@@ -1,3 +0,0 @@
|
||||
package net.runelite.rs.api;
|
||||
|
||||
public interface RSServerBuild {}
|
||||
@@ -0,0 +1,3 @@
|
||||
package net.runelite.rs.api;
|
||||
|
||||
public interface RSWorldMapScaleHandler {}
|
||||
@@ -0,0 +1,3 @@
|
||||
package net.runelite.rs.api;
|
||||
|
||||
public interface RSWorldMapSection3 {}
|
||||
Reference in New Issue
Block a user