Skip to content

Latest commit

 

History

History
36 lines (20 loc) · 594 Bytes

README.md

File metadata and controls

36 lines (20 loc) · 594 Bytes

Flash

Python3 multi-level maze game using Tkinter. Uses only the python standard library (for now!).

Goal

Get from the top left corner on level 1 (the top level) to the orange block on the bottom-right corner of the bottom level.

Controls

↑ - Move up

↓ - Move down

← - Move left

→ - Move right

w - Move up a level

s - Move down a level.

(w and s only work when on the appropriate staircase)

Tiles

White - Free space

Black - Wall

Blue - 'Down' staircase

Red - 'Up' staircase

Purple - 'Up' or 'down' staircase.

Orange - The goal.

Green - The player.