mirror of
https://github.com/TeamVanced/VancedMicroG
synced 2025-02-22 15:31:10 +01:00
Constructor for CastDeviceStatus
This commit is contained in:
parent
dfb401696f
commit
feeff75ab1
@ -21,6 +21,17 @@ import org.microg.safeparcel.SafeParceled;
|
||||
|
||||
public class CastDeviceStatus extends AutoSafeParcelable {
|
||||
|
||||
public CastDeviceStatus() {
|
||||
}
|
||||
|
||||
public CastDeviceStatus(double volume, boolean mute, int activeInputState, ApplicationMetadata applicationMetadata, int standbyState) {
|
||||
this.volume = volume;
|
||||
this.mute = mute;
|
||||
this.activeInputState = activeInputState;
|
||||
this.applicationMetadata = applicationMetadata;
|
||||
this.standbyState = standbyState;
|
||||
}
|
||||
|
||||
@SafeParceled(1)
|
||||
private int versionCode = 1;
|
||||
@SafeParceled(2)
|
||||
|
Loading…
x
Reference in New Issue
Block a user