2 Star 58 Fork 0

fg/Game-superMary-superMario

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
gamescene.h 1.31 KB
一键复制 编辑 原始数据 按行查看 历史
fg 提交于 2021-04-06 22:58 . project initialized
#ifndef GAMESCENE_H
#define GAMESCENE_H
#include <QWidget>
#include<QPainter>
#include<QDebug>
#include<QString>
#include<QTimer>
#include<QKeyEvent>
#include<QDialog>
#include"mary.h"
#include"brick.h"
#include"unknown.h"
#include"mushroom.h"
#include"master.h"
#include"pipe.h"
#include"gamepause.h"
#include"mypushbutton.h"
#include"fire.h"
#include"castle.h"
class GameScene : public QWidget {
Q_OBJECT
public:
explicit GameScene(QWidget *parent = nullptr);
int timer1;
int timer2;
int timer3;
bool is_kill_timer2;
bool game_start;
float time;
int score;
bool is_press_x;
bool is_win;
QString key;
Mary *mary;
Brick *brick;
Pipe *pipe;
Unknown *unknown;
MushRoom *mushroom;
GamePause *Pause;
Master *master;
Fire *fire;
Castle *castle;
void paintEvent(QPaintEvent *);//绘图事件
void keyPressEvent(QKeyEvent *event);//键盘按下
void keyReleaseEvent(QKeyEvent *event);//键盘抬起
void timerEvent(QTimerEvent *event);//定时器
void Game_Init();
void Die_Init();
void Pause_Init();
void Pause_Game_Init();
void Fall_Down(int &y);
void Jump_Collision();//角色跳跃碰撞检测
void Move_Collision();//移动碰撞检测
void Game_Win();
signals:
private:
};
#endif // GAMESCENE_H
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/wenyanghe/supermary.git
git@gitee.com:wenyanghe/supermary.git
wenyanghe
supermary
Game-superMary-superMario
main

搜索帮助

0d507c66 1850385 C8b1a773 1850385