【ストリートアプリ開発】道行く人から要望を伺ってゲームアプリを作る
こちらの記事は以下の動画で扱った内容のコードになります。
■動画で扱ったコードfrom collections import deque, namedtuplefrom random import randintimport pyxelPoint = namedtuple("Point", ["w", "h"]) # 猫の向きUP = Point(16, 16)DOWN = Point(-16, 16)RIGHT = Point(16, 16)LEFT = Point(-