- Added realracing3-community.apk (71.57 MB) - Removed 32-bit support (armeabi-v7a) - Only includes arm64-v8a libraries - Decompiled source code included - Added README-community.md with analysis
20 lines
477 B
Java
20 lines
477 B
Java
package com.google.android.gms.games;
|
|
|
|
import java.lang.annotation.Retention;
|
|
import java.lang.annotation.RetentionPolicy;
|
|
|
|
/* loaded from: classes2.dex */
|
|
public final class PageDirection {
|
|
public static final int NEXT = 0;
|
|
public static final int NONE = -1;
|
|
public static final int PREV = 1;
|
|
|
|
@Retention(RetentionPolicy.SOURCE)
|
|
public @interface Direction {
|
|
}
|
|
|
|
private PageDirection() {
|
|
throw new AssertionError("Uninstantiable");
|
|
}
|
|
}
|