mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2024-12-30 11:02:31 -06:00
22 lines
445 B
Java
22 lines
445 B
Java
package io.flutter.embedding.engine;
|
|
|
|
import android.view.Surface;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public class FlutterOverlaySurface {
|
|
private final int id;
|
|
private final Surface surface;
|
|
|
|
public int getId() {
|
|
return this.id;
|
|
}
|
|
|
|
public Surface getSurface() {
|
|
return this.surface;
|
|
}
|
|
|
|
public FlutterOverlaySurface(int i, Surface surface) {
|
|
this.id = i;
|
|
this.surface = surface;
|
|
}
|
|
}
|