mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2024-12-28 18:12:31 -06:00
12 lines
302 B
Java
12 lines
302 B
Java
|
package org.webrtc;
|
||
|
|
||
|
import java.lang.annotation.Retention;
|
||
|
import java.lang.annotation.RetentionPolicy;
|
||
|
|
||
|
@Retention(RetentionPolicy.SOURCE)
|
||
|
/* loaded from: classes3.dex */
|
||
|
public @interface NetworkPreference {
|
||
|
public static final int NEUTRAL = 0;
|
||
|
public static final int NOT_PREFERRED = -1;
|
||
|
}
|