mirror of
https://github.com/zhenyan121/SporeBG-Conid.git
synced 2026-04-10 06:14:08 +08:00
10 lines
200 B
C++
10 lines
200 B
C++
#pragma once
|
|
#include <string>
|
|
|
|
// 统一管理配置
|
|
struct GameConfig {
|
|
int windowWidth = 1600;
|
|
int windowHeight = 900;
|
|
std::string windowTitle = "孢子棋";
|
|
bool vsync = true;
|
|
} ; |