Import SpritePixels and draw method

This commit is contained in:
Tyler Hardy
2017-10-19 01:37:31 -05:00
committed by Adam
parent ed10a9daf5
commit 2161ae1dc4
2 changed files with 39 additions and 1 deletions

View File

@@ -24,6 +24,12 @@
*/
package net.runelite.rs.api;
public interface RSSpritePixels
import net.runelite.api.SpritePixels;
import net.runelite.mapping.Import;
public interface RSSpritePixels extends SpritePixels
{
@Import("drawAt")
@Override
void drawAt(int x, int y);
}