api-impl: stubs and fixes for Open Sudoku

This commit is contained in:
Kilian "CaféHaine" Guillaume
2024-11-19 18:00:38 +01:00
parent eba9c7037c
commit 44d922baea
7 changed files with 29 additions and 13 deletions

View File

@@ -0,0 +1,15 @@
package android.graphics.drawable;
import android.graphics.drawable.Drawable;
public class DrawableWrapper extends Drawable {
private Drawable drawable;
public DrawableWrapper(Drawable drawable) {
this.drawable = drawable;
}
public Drawable getDrawable() {
return drawable;
}
}