Files
cos498-va-hw4/cell_terrain.py
T
2025-04-18 23:04:16 +00:00

12 lines
222 B
Python

# Terrain Enum
# If you want to add more terrain types, start here.
#
# Next jump to the params.py and game_map.py file to see how maps
# are generated.
import enum
class Terrain(enum.Enum):
Open = 0
Shadows = 1