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