Add config.h

This commit is contained in:
2025-12-06 10:25:34 +08:00
parent c0d67926c4
commit f76a30af6b

10
src/utils/Config.h Normal file
View File

@@ -0,0 +1,10 @@
#pragma once
#include <string>
// 统一管理配置
struct GameConfig {
int windowWidth = 1600;
int windowHeight = 900;
std::string windowTitle = "孢子棋";
bool vsync = true;
} ;