python小项目--2048游戏

import curses import random from itertools import chain class GameField(object): def __init__(self, width=4, height=4, win_score=2048): self.width = width self.height = height
相关文章
相关标签/搜索