rogueliketutorials/render_order.py

8 lines
112 B
Python
Raw Permalink Normal View History

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