2018年1月5日
摘要: 1、俄罗斯方块类定义 1 # -*- coding: utf-8 -*- 2 3 from base import Base 4 from point import Point 5 from utils import * 6 import random 7 8 class Tetris(Base): 阅读全文
posted @ 2018-01-05 17:59 Jinglelove 阅读(397) 评论(0) 推荐(0) 编辑
摘要: 1、贪吃蛇类定义 1 # -*- coding: utf-8 -*- 2 3 from base import Base 4 from point import Point 5 from utils import * 6 import random 7 8 class Snake(Base): 9 阅读全文
posted @ 2018-01-05 17:58 Jinglelove 阅读(236) 评论(0) 推荐(0) 编辑
摘要: 1、游戏中使用的 “点” 的定义 1 # -*- coding: utf-8 -*- 2 3 class Point: 4 5 def __init__(self, x=0, y=0): 6 self.x, self.y = x, y 7 8 def __eq__(self, another): 9 阅读全文
posted @ 2018-01-05 17:55 Jinglelove 阅读(220) 评论(0) 推荐(0) 编辑