#pragma once
#include<windows.h>
#include<iostream>
using namespace std;
typedef struct Frame
{
COORD position[2];
// COORD 是Windows API中定义的一种结构,表示一个字符在控制台屏幕上的坐标。
// 其定义为:
// typedef struct _COORD {
// SHORT X;
......................
阅读全部 | 2023年8月15日 10:35