Add sprite drawing on actors

This commit is contained in:
Tyler Hardy
2017-10-19 12:03:18 -05:00
committed by Adam
parent f5df7af618
commit 97f7bd0c48
6 changed files with 80 additions and 0 deletions

View File

@@ -32,4 +32,12 @@ public interface RSSpritePixels extends SpritePixels
@Import("drawAt")
@Override
void drawAt(int x, int y);
@Import("height")
@Override
int getHeight();
@Import("width")
@Override
int getWidth();
}