-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
部分参数 #1
Comments
看不懂java代码思密达 |
返回的几个int, 对应的意思而已 :) |
我懒b一个 |
懒b |
比我还懒 |
不行一提到你,我不懒了 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
迷雾 :
public strictfp String a(int var1) {
if (var1 == 0) {
return "off";
} else if (var1 == 1) {
return "basic";
} else {
return var1 == 2 ? "los" : "Unknown";
}
}
初始单位 :
public strictfp String d(int var1) {
if (var1 == 1) {
return "Normal (1 builder)";
} else if (var1 == 2) {
return "Small Army";
} else if (var1 == 3) {
return "3 Engineers";
} else if (var1 == 4) {
return "3 Engineers (No Command Center)";
} else if (var1 == 5) {
return "Experimental Spider";
} else if (var1 == 9) {
return "Custom";
} else {
com.corrodinggames.rts.game.units.custom.l var2 = com.corrodinggames.rts.game.units.custom.l.c(var1);
return var2 != null ? var2.e() : "Unknown";
}
}
The text was updated successfully, but these errors were encountered: