mirror of
https://github.com/moonlight-stream/moonlight-android.git
synced 2025-07-23 13:02:45 +00:00
25 lines
431 B
Java
25 lines
431 B
Java
package com.limelight.nvstream;
|
|
|
|
public class StreamConfiguration {
|
|
private int width, height;
|
|
private int refreshRate;
|
|
|
|
public StreamConfiguration(int width, int height, int refreshRate) {
|
|
this.width = width;
|
|
this.height = height;
|
|
this.refreshRate = refreshRate;
|
|
}
|
|
|
|
public int getWidth() {
|
|
return width;
|
|
}
|
|
|
|
public int getHeight() {
|
|
return height;
|
|
}
|
|
|
|
public int getRefreshRate() {
|
|
return refreshRate;
|
|
}
|
|
}
|