Files
SporeBG-Conid/src/utils/Config.h
2025-12-06 10:25:34 +08:00

10 lines
200 B
C++

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