mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2024-12-26 09:02:34 -06:00
11 lines
252 B
Java
11 lines
252 B
Java
|
package com.journeyapps.barcodescanner.camera;
|
||
|
|
||
|
import com.journeyapps.barcodescanner.SourceData;
|
||
|
|
||
|
/* loaded from: classes3.dex */
|
||
|
public interface PreviewCallback {
|
||
|
void onPreview(SourceData sourceData);
|
||
|
|
||
|
void onPreviewError(Exception exc);
|
||
|
}
|