用sfml(c++)写消消乐游戏(三消)
程序运行的样子,以下是原程序。#include <SFML/Graphics.hpp>#include <time.h>using namespace std;int total=0; //总共消了多少棋子,数字显示在标题栏int ts= 80; //格子大小sf::Vector2i offset(48,48); //偏差48,24class piece //棋子对象{public: int x,y; ...
原创
2021-07-24 00:01:24 ·
2177 阅读 ·
8 评论