8 lines
133 B
Python
8 lines
133 B
Python
"""
|
|
Class representing a pivoting wall.
|
|
Only Pacman can make a wall pivot.
|
|
"""
|
|
|
|
class WallPivot:
|
|
def __init__(self):
|
|
pass |