接入Rogue真实强化效果并降低升级门槛便于测试

This commit is contained in:
2026-04-24 17:50:50 +08:00
parent 37f11394bb
commit c5a6a5f843
4 changed files with 89 additions and 18 deletions
+5
View File
@@ -38,10 +38,14 @@ struct PlayerStats
int exp;
int requiredExp;
int totalLinesCleared;
int scoreMultiplierPercent;
int expMultiplierPercent;
int slowFallStacks;
};
struct UpgradeOption
{
int id;
const TCHAR* name;
const TCHAR* category;
const TCHAR* description;
@@ -85,6 +89,7 @@ extern PlayerStats rogueStats;
extern UpgradeUiState upgradeUiState;
extern int currentScreen;
extern int currentMode;
extern int currentFallInterval;
extern int bricks[7][4][4][4];
extern COLORREF BrickColor[7];