This repository has been archived on 2019-12-09. You can view files and clone it, but cannot push or open issues or pull requests.
pacman2/scenes/game_objects/common.py

12 lines
107 B
Python
Raw Normal View History

from enum import Enum
2019-12-09 12:36:42 +01:00
S = 20
class Direction(Enum):
UP = 0
DOWN = 1
LEFT = 2
RIGHT = 3