Files
android_translation_layer/src/api-impl/android/util/Size.java
2025-07-14 16:32:28 +02:00

21 lines
267 B
Java

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;
}
}