福利来啦,送给大家一个小游戏的源码,不要错过哟
从小到大玩过很多的游戏,在我小时候,能玩游戏的地方不多,那时玩游戏都是偷摸玩的,只要是个游戏就觉得非常有趣,比较经典的有魂斗罗,拳皇,超级玛丽,贪吃蛇,俄罗斯方块等游戏;发展到现在,玩游戏已经成为生活的一部分了,尤其是现在的很多游戏都已经网络社交化了,游戏种类也更加丰富了,没事大家一起组队玩个游戏还是很有趣的事情。 今天给大家带来的就是俄罗斯方块小游戏 先给大家看看游戏的试玩效果图 import sys, random from PyQt5.QtWidgets import QApplication, QDesktopWidget, QHBoxLayout, QVBoxLayout, QLabel, \ QPushButton, QFrame, QLCDNumber, QSlider from PyQt5.QtGui import QIcon, QPainter, QPen, QBrush, QColor, QFont from PyQt5.QtCore import Qt, QBasicTimer # 形状 class Shape: def __init__ (self): # 19种形状:tuple参数分别代表:(形状代号,左、右、上、下边缘距离,类型) self.num = 19 self.type1 = 1 self.type2 = 2 self.type3 = 3