audio_service/android/src/main/java/com/ryanheise/audioservice/Size.java

12 lines
186 B
Java

package com.ryanheise.audioservice;
public class Size {
public int width;
public int height;
public Size(int width, int height) {
this.width = width;
this.height = height;
}
}