优化输出目录

This commit is contained in:
2024-09-26 16:08:35 +08:00
parent ef0798dc04
commit 2d9ae52f48
2 changed files with 15 additions and 2 deletions

View File

@@ -1,8 +1,12 @@
//
// Created by zyz on 2023/12/20.
//
#include <iostream>
#include "Video/ScreenManager.h"
int main() {
ScreenManager screenManager;
screenManager.UpdateDisplayInfo();
std::cout << "Press Enter to exit..." << std::endl; // 输出提示信息
std::cin.get(); // 等待用户输入
return 0;
}