fix function signature

This commit is contained in:
Hannes Janetzek 2013-09-17 12:43:14 +02:00
parent 7a35bb48b1
commit 96b582b58d

View File

@ -5,7 +5,7 @@ public interface Canvas {
void setBitmap(Bitmap bitmap);
void drawText(String string, float f, float yy, Paint stroke);
void drawText(String string, float x, float y, Paint stroke);
void drawBitmap(Bitmap bitmap, float x, float y);