1
0
python-roguelike/render_order.py
Timothy Warren 02215c884a Add death
2022-01-10 14:09:31 -05:00

8 lines
112 B
Python

from enum import auto, Enum
class RenderOrder(Enum):
CORPSE = auto()
ITEM = auto()
ACTOR = auto()