- 28,932 files - Full Java source code - Smali files - Resources Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
19 lines
348 B
Java
19 lines
348 B
Java
package com.mbridge.msdk.newreward.player;
|
|
|
|
/* loaded from: classes4.dex */
|
|
public class Calculate {
|
|
private int mValue;
|
|
|
|
public int addOne() {
|
|
int i = this.mValue + 1;
|
|
this.mValue = i;
|
|
return i;
|
|
}
|
|
|
|
public int reduceOne() {
|
|
int i = this.mValue - 1;
|
|
this.mValue = i;
|
|
return i;
|
|
}
|
|
}
|