Translations:Development/74/zh: Difference between revisions
Created page with "// 应该这么做: const char *pStr = Team == TEAM_RED ? Localize("Red team") : Localize("Blue team"); </syntaxhighlight>" |
No edit summary |
||
Line 1: | Line 1: | ||
// 应该这 | // 应该这样做: | ||
const char *pStr = Team == TEAM_RED ? Localize("Red team") : Localize("Blue team"); | const char *pStr = Team == TEAM_RED ? Localize("Red team") : Localize("Blue team"); | ||
</syntaxhighlight> | </syntaxhighlight> |
Latest revision as of 05:42, 30 July 2023
// 应该这样做: const char *pStr = Team == TEAM_RED ? Localize("Red team") : Localize("Blue team"); </syntaxhighlight>