摘要:
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): 阅读全文
摘要:
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 阅读全文
摘要:
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 阅读全文