api-impl: misc additions for different apps

This commit is contained in:
Julian Winkler
2025-06-18 09:02:08 +02:00
parent d898966e04
commit bf5eb099bd
20 changed files with 109 additions and 4 deletions

View File

@@ -1,4 +1,20 @@
package android.util;
public class Size {
private int width;
private int height;
public Size(int width, int height) {
this.width = width;
this.height = height;
}
public int getWidth() {
return width;
}
public int getHeight() {
return height;
}
}