This commit is contained in:
Putoo
2026-06-03 18:21:22 +08:00
parent 8550d85659
commit 8b8eb732ae
11 changed files with 653 additions and 4 deletions

View File

@@ -110,5 +110,21 @@ export class GameTool {
return result;
}
public static GetSeaMapSafetyName(safety: number) {
let result = "安全海域";
switch (safety) {
case 0:
result = "安全海域";
break;
case 1:
result = "普通海域";
break;
case 2:
result = "危险海域";
break;
}
return result;
}
}